Skip to content

Commit 8c7c5e1

Browse files
authored
Merge pull request #719 from RubyMoney/jl-more-dev-improvements
allow using latest version of money gem for development
2 parents 3ce97ab + eeb811d commit 8c7c5e1

File tree

5 files changed

+13
-69
lines changed

5 files changed

+13
-69
lines changed

.github/workflows/ruby.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
strategy:
2121
matrix:
22-
ruby-version: ['3.0', '3.1', '3.2', '3.3', '3.4']
22+
ruby-version: ['3.1', '3.2', '3.3', '3.4']
2323
mongodb-version: ['4.4']
2424
sqlite-version: ['3.0']
2525

Gemfile

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,22 @@ source 'https://rubygems.org'
22

33
gemspec
44

5+
gem "bigdecimal"
6+
gem "mutex_m"
7+
gem "benchmark"
8+
gem "drb"
9+
510
platforms :jruby do
611
gem "activerecord-jdbc-adapter"
712
gem "activerecord-jdbcsqlite3-adapter"
813
gem "jruby-openssl"
914
end
1015

1116
platforms :ruby do
12-
gem "sqlite3"
17+
gem "sqlite3", "~> 1.4"
1318
end
1419

1520
group :development do
1621
gem "pry"
17-
gem 'rb-inotify', '~> 0.9'
18-
gem 'guard'
19-
gem 'guard-rspec'
20-
gem 'guard-rails'
22+
gem "money", git: "https://github.com/RubyMoney/money.git"
2123
end

Guardfile

Lines changed: 0 additions & 24 deletions
This file was deleted.

gemfiles/rails6.1.gemfile

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,3 @@
1-
source 'https://rubygems.org'
1+
eval_gemfile "../Gemfile"
22

3-
gem 'rails', '~> 6.1.0'
4-
gem 'i18n', '~> 1.6'
5-
gem "bigdecimal"
6-
gem "mutex_m"
7-
gem "benchmark"
8-
gem "drb"
9-
10-
platforms :jruby do
11-
gem "activerecord-jdbc-adapter"
12-
gem "activerecord-jdbcsqlite3-adapter"
13-
gem "jruby-openssl"
14-
end
15-
16-
platforms :ruby do
17-
gem "sqlite3", "~> 1.4"
18-
end
19-
20-
gemspec path: '../'
3+
gem "rails", "~> 6.1.0"

gemfiles/rails7.0.gemfile

Lines changed: 3 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,4 @@
1-
source 'https://rubygems.org'
1+
eval_gemfile "../Gemfile"
22

3-
gem 'rails', '~> 7.0.0'
4-
gem 'sprockets-rails'
5-
gem 'i18n', '~> 1.6'
6-
gem "bigdecimal"
7-
gem "mutex_m"
8-
gem "benchmark"
9-
gem "drb"
10-
11-
platforms :jruby do
12-
gem "activerecord-jdbc-adapter"
13-
gem "activerecord-jdbcsqlite3-adapter"
14-
gem "jruby-openssl"
15-
end
16-
17-
platforms :ruby do
18-
gem "sqlite3", "~> 1.4"
19-
end
20-
21-
gemspec path: '../'
3+
gem "rails", "~> 7.0.0"
4+
gem "sprockets-rails"

0 commit comments

Comments
 (0)