Skip to content

Commit

Permalink
Use quotes consistently in Gemfile
Browse files Browse the repository at this point in the history
  • Loading branch information
dasch committed May 24, 2011
1 parent b3f51e3 commit 962936c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Gemfile
Expand Up @@ -32,19 +32,19 @@ end


platforms :mri_19 do platforms :mri_19 do
# TODO: Remove the conditional when ruby-debug19 supports Ruby >= 1.9.3 # 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 end


platforms :ruby do platforms :ruby do
if ENV["RB_FSEVENT"] if ENV["RB_FSEVENT"]
gem 'rb-fsevent' gem "rb-fsevent"
end end
gem 'json' gem "json"
gem 'yajl-ruby' gem "yajl-ruby"
gem "nokogiri", ">= 1.4.4" gem "nokogiri", ">= 1.4.4"


group :test do group :test do
gem 'ruby-prof' gem "ruby-prof"
end end
# AR # AR
gem "sqlite3", "~> 1.3.3" gem "sqlite3", "~> 1.3.3"
Expand Down Expand Up @@ -75,10 +75,10 @@ end
# gems that are necessary for ActiveRecord tests with Oracle database # gems that are necessary for ActiveRecord tests with Oracle database
if ENV['ORACLE_ENHANCED_PATH'] || ENV['ORACLE_ENHANCED'] if ENV['ORACLE_ENHANCED_PATH'] || ENV['ORACLE_ENHANCED']
platforms :ruby do platforms :ruby do
gem 'ruby-oci8', ">= 2.0.4" gem "ruby-oci8", ">= 2.0.4"
end end
if ENV['ORACLE_ENHANCED_PATH'] 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']

This comment has been minimized.

Copy link
@threedaymonk

threedaymonk May 24, 2011

Contributor

You missed the single quotes in ENV.

This comment has been minimized.

Copy link
@dasch

dasch May 25, 2011

Author Contributor

I usually use single quotes for Hash keys -- it's easy to change them if you prefer.

else else
gem "activerecord-oracle_enhanced-adapter", :git => "git://github.com/rsim/oracle-enhanced.git" gem "activerecord-oracle_enhanced-adapter", :git => "git://github.com/rsim/oracle-enhanced.git"
end end
Expand Down

0 comments on commit 962936c

Please sign in to comment.