Skip to content

Commit 9c74433

Browse files
committed
Merge pull request #235 from CodeandoMexico/rails4.2
The Great Migration: Rails v4.2
2 parents 5dfbd48 + c5359bd commit 9c74433

File tree

87 files changed

+1085
-716
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+1085
-716
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
/db/*.sqlite3
1212

1313
# Ignore all logfiles and tempfiles.
14-
/log/*.log
14+
/log/*
15+
!/log/.keep
1516
/tmp
1617
.DS_Store
1718
.sass-cache/

Gemfile

+23-16
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ source 'https://rubygems.org'
22

33
ruby '2.1.5'
44

5-
gem 'rails', '3.2.16'
5+
gem 'rails', '4.2.0'
66

77
gem 'pg'
8-
gem 'devise', '2.2.4'
8+
gem 'devise'
99
gem 'nested_form'
1010
gem 'geocoder'
1111
gem "highcharts-rails", "~> 3.0.0"
@@ -20,7 +20,7 @@ gem 'omniauth-twitter'
2020
gem 'carrierwave'
2121
gem 'mini_magick'
2222
gem 'fog'
23-
gem 'aws-s3'
23+
gem 'aws-sdk', '< 2.0'
2424
gem 'kaminari'
2525
gem 'thumbs_up'
2626
gem 'gravatar-ultimate'
@@ -38,20 +38,24 @@ group :test do
3838
gem 'database_cleaner'
3939
gem 'launchy'
4040
gem 'capybara'
41-
gem 'selenium-webdriver', "~> 2.38.0"
41+
gem 'selenium-webdriver'
4242
end
4343

4444
group :development,:test do
4545
gem 'factory_girl_rails'
4646
gem 'rspec-rails'
4747
gem 'shoulda-matchers'
48+
gem 'byebug'
49+
# Access an IRB console on exception pages or by using <%= console %> in views
50+
gem 'web-console', '~> 2.0'
51+
# Spring speeds up development by keeping your application running in the background
52+
gem 'spring'
4853
end
4954

5055
group :development do
5156
gem 'better_errors'
5257
gem 'binding_of_caller'
5358
gem 'thin'
54-
gem 'byebug'
5559
gem 'letter_opener'
5660
gem 'quiet_assets'
5761
gem 'guard'
@@ -63,14 +67,17 @@ group :production do
6367
gem 'unicorn'
6468
end
6569

66-
# Gems used only for assets and not required
67-
# in production environments by default.
68-
group :assets do
69-
gem 'sass-rails', '~> 3.2.3'
70-
gem 'coffee-rails', '~> 3.2.1'
71-
gem 'haml-rails'
72-
gem 'compass-rails'
73-
gem "modular-scale", "~> 1.0.6"
74-
gem 'bootstrap-sass', '~> 3.0.0.0.rc'
75-
gem 'uglifier', '>= 1.0.3'
76-
end
70+
# Assets
71+
gem 'sass-rails', '~> 5.0'
72+
gem 'coffee-rails', '~> 4.1.0'
73+
gem 'haml-rails'
74+
gem 'compass-rails'
75+
gem "modular-scale", "~> 1.0.6"
76+
gem 'bootstrap-sass', '~> 3.0.0.0.rc'
77+
gem 'uglifier', '>= 1.3.0'
78+
79+
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
80+
gem 'therubyracer', platforms: :ruby
81+
82+
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
83+
gem 'turbolinks'

0 commit comments

Comments
 (0)