├── .gitignore ├── .rvmrc ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── lib ├── rack-modernizr.rb └── rack-modernizr │ └── version.rb ├── modernizr.gemspec └── test └── spec_rack_modernizr.rb /.gitignore: -------------------------------------------------------------------------------- 1 | pkg/* 2 | *.gem 3 | .bundle 4 | -------------------------------------------------------------------------------- /.rvmrc: -------------------------------------------------------------------------------- 1 | rvm 1.8.7@rack-modernizr 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshally/rack-modernizr/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshally/rack-modernizr/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshally/rack-modernizr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshally/rack-modernizr/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshally/rack-modernizr/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/rack-modernizr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshally/rack-modernizr/HEAD/lib/rack-modernizr.rb -------------------------------------------------------------------------------- /lib/rack-modernizr/version.rb: -------------------------------------------------------------------------------- 1 | module Modernizr 2 | VERSION = "0.0.2" 3 | end 4 | -------------------------------------------------------------------------------- /modernizr.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshally/rack-modernizr/HEAD/modernizr.gemspec -------------------------------------------------------------------------------- /test/spec_rack_modernizr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshally/rack-modernizr/HEAD/test/spec_rack_modernizr.rb --------------------------------------------------------------------------------