Skip to content
This repository was archived by the owner on Dec 11, 2025. It is now read-only.

Commit 172d877

Browse files
committed
Upgrade to version 3.0.0
1 parent 20af6e1 commit 172d877

File tree

117 files changed

+10085
-2799
lines changed

Some content is hidden

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

117 files changed

+10085
-2799
lines changed

.browserslistrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
defaults

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,11 @@
2222
*/**/.keep
2323

2424
/public/assets
25+
26+
/public/packs
27+
/public/packs-test
28+
/node_modules
29+
/yarn-error.log
30+
yarn-debug.log*
31+
.yarn-integrity
32+
.byebug_history

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ruby-2.4.3
1+
ruby-2.7.2

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: ruby
22
rvm:
3-
- 2.4.3
3+
- 2.7.2
44
before_install:
55
- which qmake # to see where it links
66
- ls -la `which qmake`

Gemfile

Lines changed: 37 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,63 @@
11
source 'https://rubygems.org'
2+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
23

3-
gem 'rails', '~> 4.2.11'
4+
ruby '2.7.2'
5+
6+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
7+
gem 'rails', '~> 6.0.3', '>= 6.0.3.4'
8+
# Use sqlite3 as the database for Active Record
9+
gem 'sqlite3', '~> 1.4'
10+
# Use Puma as the app server
11+
gem 'puma', '~> 4.1'
12+
# Use SCSS for stylesheets
13+
gem 'sass-rails', '>= 6'
14+
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
15+
gem 'webpacker', '~> 4.0'
16+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
17+
gem 'jbuilder', '~> 2.7'
418

5-
gem 'sass-rails', '~> 5.0'
6-
gem 'uglifier', '>= 1.3.0'
719
gem 'jquery-rails'
820
gem 'font-awesome-rails'
9-
gem 'foundation-rails', '~> 5.5.3.2'
21+
gem 'foundation-rails'
1022
gem 'simple_form'
1123
gem 'cocoon'
1224
gem 'kaminari'
1325
gem 'rest-client'
1426
gem 'libxml-ruby'
15-
gem 'sqlite3'
27+
1628
gem 'pg', '~> 0.15'
1729
gem 'mysql2'
18-
gem 'puma'
30+
31+
gem 'liquid'
32+
33+
# Reduces boot times through caching; required in config/boot.rb
34+
gem 'bootsnap', '>= 1.4.2', require: false
1935

2036
group :development, :test do
21-
gem 'byebug'
22-
gem 'rspec-rails', '~> 3.6'
37+
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
38+
gem 'rspec-rails', '4.0.0.beta3'
2339
end
2440

2541
group :development do
26-
gem 'web-console', '~> 2.0'
27-
gem 'spring'
42+
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
43+
gem 'web-console', '>= 3.3.0'
44+
gem 'listen', '~> 3.2'
2845
end
2946

3047
group :test do
31-
gem 'shoulda-matchers'
48+
gem 'shoulda-matchers', '4.4.1'
3249
gem 'factory_bot_rails'
3350
gem 'database_cleaner'
34-
gem 'rspec-matchers-controller_filters'
3551
gem 'capybara'
3652
gem 'capybara-screenshot'
37-
gem 'capybara-webkit', '1.14.0'
38-
gem 'cucumber-rails', '1.4.3', :require => false
39-
gem 'cucumber-core', '1.4.0'
40-
gem 'selenium-webdriver', '2.53.0'
53+
gem 'cucumber-rails', :require => false
54+
gem 'cucumber-core'
55+
gem 'selenium-webdriver'
4156
gem 'table_flipper'
57+
# Easy installation and use of web drivers to run system tests with browsers
58+
gem 'webdrivers'
59+
gem 'rails-controller-testing'
4260
end
61+
62+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
63+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

0 commit comments

Comments
 (0)