Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
change Gemfile to adapt railstutorials
  • Loading branch information
brownman committed Nov 4, 2012
1 parent 6b8701f commit cd12d7a
Show file tree
Hide file tree
Showing 4 changed files with 183 additions and 127 deletions.
47 changes: 25 additions & 22 deletions Gemfile
Expand Up @@ -5,10 +5,21 @@ source 'https://rubygems.org'
#ruby '1.9.3'

#gem 'bundler', '1.2.0.pre'
gem 'rails', '3.2.3'
#gem 'rails', '3.2.3'

gem 'rails', '3.2.8'
gem 'bootstrap-sass', '2.0.4'
gem 'bcrypt-ruby', '3.0.1'
gem 'faker', '1.0.1'
gem 'will_paginate', '3.0.3'
gem 'bootstrap-will_paginate', '0.0.6'
gem 'jquery-rails', '2.0.2'

#gem 'twitter-bootstrap-rails'

#gem 'rails-backbone', '0.7.0'

#gem 'thin'



Expand All @@ -18,31 +29,19 @@ gem 'rails', '3.2.3'
# gem 'rails', :git => 'git://github.com/rails/rails.git'


group :production do

gem "heroku"
gem 'pg'
end

# Gems used only for assets and not required
# in production environments by default.
group :assets do

gem 'less-rails'
gem 'therubyracer'
gem 'libv8', '3.3.10.4'

gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'

# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer'

gem 'uglifier', '>= 1.0.3'
gem 'sass-rails', '3.2.5'
gem 'coffee-rails', '3.2.2'
gem 'uglifier', '1.2.3'

end

gem 'jquery-rails'
#gem 'jquery-rails'

# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
Expand All @@ -59,16 +58,14 @@ gem 'jquery-rails'
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'

gem 'twitter-bootstrap-rails'
gem 'rails-backbone', '0.7.0'

gem 'thin'
gem 'jasmine'
gem 'jasminerice'


group :development, :test do
#gem 'activerecord-sqlite3-adapter'
gem 'sqlite3', '1.3.5'
gem 'jasmine'
gem 'jasminerice'
gem 'guard'
gem 'guard-jasmine'
gem 'guard-coffeescript'
Expand All @@ -77,4 +74,10 @@ group :development, :test do
gem 'rb-inotify', '~> 0.8.8'
end

group :production do

#gem "heroku"
#gem 'pg'

gem 'pg', '0.12.2'
end
82 changes: 82 additions & 0 deletions Gemfile.backup
@@ -0,0 +1,82 @@
source 'https://rubygems.org'



#ruby '1.9.3'

#gem 'bundler', '1.2.0.pre'
gem 'rails', '3.2.3'








# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'


group :production do

#gem "heroku"
#gem 'pg'

gem 'pg', '0.12.2'
end

# Gems used only for assets and not required
# in production environments by default.
group :assets do

gem 'less-rails'
gem 'therubyracer'
gem 'libv8', '3.3.10.4'

gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'

# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer'

gem 'uglifier', '>= 1.0.3'

end

gem 'jquery-rails'

# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'

# To use Jbuilder templates for JSON
# gem 'jbuilder'

# Use unicorn as the web server
# gem 'unicorn'

# Deploy with Capistrano
# gem 'capistrano'

# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'

gem 'twitter-bootstrap-rails'
gem 'rails-backbone', '0.7.0'

gem 'thin'
gem 'jasmine'
gem 'jasminerice'

group :development, :test do
#gem 'activerecord-sqlite3-adapter'
gem 'sqlite3', '1.3.5'
gem 'guard'
gem 'guard-jasmine'
gem 'guard-coffeescript'
gem 'guard-livereload'

gem 'rb-inotify', '~> 0.8.8'
end


0 comments on commit cd12d7a

Please sign in to comment.