Skip to content
This repository has been archived by the owner on Mar 1, 2018. It is now read-only.

Commit

Permalink
Being anal and switching all double quotes to single quotes in Gemfile.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ricky Chilcott committed Jun 11, 2013
1 parent a7824e8 commit e60a695
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions Gemfile
@@ -1,30 +1,30 @@
# Edit this Gemfile to bundle your application's dependencies. # Edit this Gemfile to bundle your application's dependencies.
source 'http://gemcutter.org' source 'http://gemcutter.org'


gem "rails", "3.2.12" gem 'rails', '3.2.12'
gem "sqlite3-ruby", :require => "sqlite3" gem 'sqlite3-ruby', :require => 'sqlite3'
gem "execjs" gem 'execjs'
gem "therubyracer" gem 'therubyracer'
gem 'will_paginate', '~> 3.0' # version added for rails 3 compatibility gem 'will_paginate', '~> 3.0' # version added for rails 3 compatibility
gem "nokogiri" gem 'nokogiri'
gem "paperclip" gem 'paperclip'
gem "client_side_validations" gem 'client_side_validations'
gem "whenever" gem 'whenever'
gem "plist" gem 'plist'
gem "cancan" gem 'cancan'
gem "highline" gem 'highline'


gem "mysql2", "> 0.3" gem 'mysql2', '> 0.3'
gem "taps" gem 'taps'


gem "highcharts-rails", "~> 2.1.9" gem 'highcharts-rails', '~> 2.1.9'
gem "dynamic_form" # enabling this should allow the removal of vendor/dynamic_form gem 'dynamic_form' # enabling this should allow the removal of vendor/dynamic_form


gem 'coveralls', require: false gem 'coveralls', require: false


group :development do group :development do
gem "rails-erd" gem 'rails-erd'
gem "textmate_backtracer" gem 'textmate_backtracer'
gem 'pry-rails' gem 'pry-rails'
gem 'meta_request' gem 'meta_request'
end end
Expand Down

0 comments on commit e60a695

Please sign in to comment.