Skip to content

Commit

Permalink
Update Gemfile (#280)
Browse files Browse the repository at this point in the history
* Update Gemfile

Pin bigdecimal so a build can occur on ruby 2.7

Sort gems

Update Gemfile.lock

* Update root Gemfile

* Uprev ruby version
  • Loading branch information
johnjelinek authored May 12, 2023
1 parent 89949de commit 26fcc3b
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.3.0
2.7.8
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language:
- ruby
rvm:
- '2.3'
- '2.7'
jdk:
- openjdk10
env:
Expand Down
10 changes: 6 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
source "http://rubygems.org"
gem "activesupport", "~> 4.1"
gem "i18n", "~> 0.9"
source 'http://rubygems.org'

gem 'activesupport', '~> 4.2.8'
gem 'bigdecimal', '1.3.5'
gem 'fattr'
gem 'i18n', '~> 0.9'

group :test do
gem "rspec", "~> 3.7"
gem 'rspec', '~> 3.7'
end
14 changes: 7 additions & 7 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
GEM
remote: http://rubygems.org/
specs:
activesupport (4.2.5)
activesupport (4.2.11.3)
i18n (~> 0.7)
json (~> 1.7, >= 1.7.7)
minitest (~> 5.1)
thread_safe (~> 0.3, >= 0.3.4)
tzinfo (~> 1.1)
bigdecimal (1.3.5)
concurrent-ruby (1.0.5)
diff-lcs (1.3)
fattr (2.4.0)
i18n (0.9.1)
concurrent-ruby (~> 1.0)
json (1.8.6)
minitest (5.10.3)
minitest (5.18.0)
rspec (3.7.0)
rspec-core (~> 3.7.0)
rspec-expectations (~> 3.7.0)
Expand All @@ -28,17 +27,18 @@ GEM
rspec-support (~> 3.7.0)
rspec-support (3.7.1)
thread_safe (0.3.6)
tzinfo (1.2.4)
tzinfo (1.2.11)
thread_safe (~> 0.1)

PLATFORMS
ruby

DEPENDENCIES
activesupport (~> 4.1)
activesupport (~> 4.2.8)
bigdecimal (= 1.3.5)
fattr
i18n (~> 0.9)
rspec (~> 3.7)

BUNDLED WITH
1.16.1
1.17.3
2 changes: 1 addition & 1 deletion jack-core/src/.ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.3.0
2.7.8
8 changes: 5 additions & 3 deletions jack-core/src/Gemfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
source "http://rubygems.org"
gem "activesupport", "~> 4.2.8"
gem "i18n", "~> 0.9"
source 'http://rubygems.org'

gem 'activesupport', '~> 4.2.8'
gem 'bigdecimal', '1.3.5'
gem 'fattr'
gem 'i18n', '~> 0.9'
4 changes: 3 additions & 1 deletion jack-core/src/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ GEM
minitest (~> 5.1)
thread_safe (~> 0.3, >= 0.3.4)
tzinfo (~> 1.1)
bigdecimal (1.3.5)
concurrent-ruby (1.0.5)
fattr (2.4.0)
i18n (0.9.1)
Expand All @@ -20,8 +21,9 @@ PLATFORMS

DEPENDENCIES
activesupport (~> 4.2.8)
bigdecimal (= 1.3.5)
fattr
i18n (~> 0.9)

BUNDLED WITH
1.16.1
1.17.3

0 comments on commit 26fcc3b

Please sign in to comment.