diff options
author | Daniel Schierbeck <daniel.schierbeck@gmail.com> | 2011-05-24 13:27:43 -0700 |
---|---|---|
committer | Daniel Schierbeck <daniel.schierbeck@gmail.com> | 2011-05-24 13:27:43 -0700 |
commit | 962936c56bf154accc3cdf04fb49d064b6c220f2 (patch) | |
tree | 251e27eb58676f6990a1a913e224c39ceef1937c /Gemfile | |
parent | b3f51e3b1c4f9707a456ea51ca5998606383e86d (diff) | |
download | rails-962936c56bf154accc3cdf04fb49d064b6c220f2.tar.gz rails-962936c56bf154accc3cdf04fb49d064b6c220f2.tar.bz2 rails-962936c56bf154accc3cdf04fb49d064b6c220f2.zip |
Use quotes consistently in Gemfile
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -32,19 +32,19 @@ end platforms :mri_19 do # TODO: Remove the conditional when ruby-debug19 supports Ruby >= 1.9.3 - gem "ruby-debug19", :require => 'ruby-debug' if RUBY_VERSION < "1.9.3" + gem "ruby-debug19", :require => "ruby-debug" if RUBY_VERSION < "1.9.3" end platforms :ruby do if ENV["RB_FSEVENT"] - gem 'rb-fsevent' + gem "rb-fsevent" end - gem 'json' - gem 'yajl-ruby' + gem "json" + gem "yajl-ruby" gem "nokogiri", ">= 1.4.4" group :test do - gem 'ruby-prof' + gem "ruby-prof" end # AR gem "sqlite3", "~> 1.3.3" @@ -75,10 +75,10 @@ end # gems that are necessary for ActiveRecord tests with Oracle database if ENV['ORACLE_ENHANCED_PATH'] || ENV['ORACLE_ENHANCED'] platforms :ruby do - gem 'ruby-oci8', ">= 2.0.4" + gem "ruby-oci8", ">= 2.0.4" end if ENV['ORACLE_ENHANCED_PATH'] - gem 'activerecord-oracle_enhanced-adapter', :path => ENV['ORACLE_ENHANCED_PATH'] + gem "activerecord-oracle_enhanced-adapter", :path => ENV['ORACLE_ENHANCED_PATH'] else gem "activerecord-oracle_enhanced-adapter", :git => "git://github.com/rsim/oracle-enhanced.git" end |