diff options
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 14 |
1 files changed, 6 insertions, 8 deletions
@@ -8,10 +8,6 @@ else gem "arel", '~> 2.1.3' end -gem "jquery-rails" -gem "coffee-script" -gem "sass" - # This needs to be with require false to avoid # it being automatically loaded by sprockets gem "uglifier", ">= 1.0.0", :require => false @@ -40,6 +36,12 @@ platforms :mri_19 do gem "ruby-debug19", :require => "ruby-debug" unless RUBY_VERSION > "1.9.2" || ENV['TRAVIS'] end +platforms :mri do + group :test do + gem "ruby-prof" if RUBY_VERSION < "1.9.3" + end +end + platforms :ruby do if ENV["RB_FSEVENT"] gem "rb-fsevent" @@ -48,10 +50,6 @@ platforms :ruby do gem "yajl-ruby" gem "nokogiri", ">= 1.4.5" - group :test do - gem "ruby-prof" if RUBY_VERSION < "1.9.3" - - end # AR gem "sqlite3", "~> 1.3.3" |