Skip to content

Commit c58c332

Browse files
committedMay 17, 2017
update to Rails 5.1
1 parent 63ccb7f commit c58c332

31 files changed

+246
-205
lines changed
 

‎.ruby-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.3.1
1+
2.4.1

‎Gemfile

+14-10
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,32 @@
11
source 'https://rubygems.org'
2-
ruby '2.3.1'
3-
gem 'rails', '~> 5.0.0', '>= 5.0.0.1'
2+
git_source(:github) do |repo_name|
3+
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
4+
"https://github.com/#{repo_name}.git"
5+
end
6+
ruby '2.4.1'
7+
gem 'rails', '~> 5.1.1'
48
gem 'sqlite3'
5-
gem 'puma', '~> 3.0'
9+
gem 'puma', '~> 3.7'
610
gem 'sass-rails', '~> 5.0'
711
gem 'uglifier', '>= 1.3.0'
812
gem 'coffee-rails', '~> 4.2'
9-
gem 'jquery-rails'
1013
gem 'turbolinks', '~> 5'
1114
gem 'jbuilder', '~> 2.5'
1215
group :development, :test do
13-
gem 'byebug', platform: :mri
16+
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
17+
gem 'capybara', '~> 2.13'
18+
gem 'selenium-webdriver'
1419
end
1520
group :development do
16-
gem 'web-console'
17-
gem 'listen', '~> 3.0.5'
21+
gem 'web-console', '>= 3.3.0'
22+
gem 'listen', '>= 3.0.5', '< 3.2'
1823
gem 'spring'
1924
gem 'spring-watcher-listen', '~> 2.0.0'
2025
end
2126
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
22-
gem 'bootstrap', '~> 4.0.0.alpha5'
27+
gem 'bootstrap', '~> 4.0.0.alpha6'
2328
gem 'high_voltage'
29+
gem 'jquery-rails'
2430
group :development do
2531
gem 'better_errors'
2632
gem 'rails_layout'
@@ -32,8 +38,6 @@ group :development, :test do
3238
gem 'rspec-rails'
3339
end
3440
group :test do
35-
gem 'capybara'
3641
gem 'database_cleaner'
3742
gem 'launchy'
38-
gem 'selenium-webdriver'
3943
end

0 commit comments

Comments
 (0)
Please sign in to comment.