forked from fnando/defaults
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for Rails 7.1, 7.2 and Rails 3.3
- Loading branch information
1 parent
b1172fc
commit 6647712
Showing
6 changed files
with
221 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
source 'https://rubygems.org' | ||
|
||
# Runtime dependencies | ||
gem 'activerecord', '~>7.1.5' | ||
gem 'pg', '>=1.3' | ||
|
||
# Development dependencies | ||
gem 'rake' | ||
gem 'database_cleaner' | ||
gem 'rspec', '~>3.5' | ||
gem 'gemika', '>=0.8.1' | ||
gem 'pry-byebug', '>=3.10.1' | ||
|
||
# Gem under test | ||
gem 'has_defaults', path: '.' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
PATH | ||
remote: . | ||
specs: | ||
has_defaults (1.2.1) | ||
activerecord | ||
|
||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
activemodel (7.1.5) | ||
activesupport (= 7.1.5) | ||
activerecord (7.1.5) | ||
activemodel (= 7.1.5) | ||
activesupport (= 7.1.5) | ||
timeout (>= 0.4.0) | ||
activesupport (7.1.5) | ||
base64 | ||
benchmark (>= 0.3) | ||
bigdecimal | ||
concurrent-ruby (~> 1.0, >= 1.0.2) | ||
connection_pool (>= 2.2.5) | ||
drb | ||
i18n (>= 1.6, < 2) | ||
logger (>= 1.4.2) | ||
minitest (>= 5.1) | ||
mutex_m | ||
securerandom (>= 0.3) | ||
tzinfo (~> 2.0) | ||
base64 (0.2.0) | ||
benchmark (0.4.0) | ||
bigdecimal (3.1.8) | ||
byebug (11.1.3) | ||
coderay (1.1.3) | ||
concurrent-ruby (1.3.4) | ||
connection_pool (2.4.1) | ||
database_cleaner (2.1.0) | ||
database_cleaner-active_record (>= 2, < 3) | ||
database_cleaner-active_record (2.2.0) | ||
activerecord (>= 5.a) | ||
database_cleaner-core (~> 2.0.0) | ||
database_cleaner-core (2.0.1) | ||
diff-lcs (1.5.1) | ||
drb (2.2.1) | ||
gemika (0.8.3) | ||
i18n (1.14.6) | ||
concurrent-ruby (~> 1.0) | ||
logger (1.6.1) | ||
method_source (1.1.0) | ||
minitest (5.25.2) | ||
mutex_m (0.3.0) | ||
pg (1.5.9) | ||
pry (0.14.2) | ||
coderay (~> 1.1) | ||
method_source (~> 1.0) | ||
pry-byebug (3.10.1) | ||
byebug (~> 11.0) | ||
pry (>= 0.13, < 0.15) | ||
rake (13.2.1) | ||
rspec (3.13.0) | ||
rspec-core (~> 3.13.0) | ||
rspec-expectations (~> 3.13.0) | ||
rspec-mocks (~> 3.13.0) | ||
rspec-core (3.13.2) | ||
rspec-support (~> 3.13.0) | ||
rspec-expectations (3.13.3) | ||
diff-lcs (>= 1.2.0, < 2.0) | ||
rspec-support (~> 3.13.0) | ||
rspec-mocks (3.13.2) | ||
diff-lcs (>= 1.2.0, < 2.0) | ||
rspec-support (~> 3.13.0) | ||
rspec-support (3.13.1) | ||
securerandom (0.3.2) | ||
timeout (0.4.2) | ||
tzinfo (2.0.6) | ||
concurrent-ruby (~> 1.0) | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
activerecord (~> 7.1.5) | ||
database_cleaner | ||
gemika (>= 0.8.1) | ||
has_defaults! | ||
pg (>= 1.3) | ||
pry-byebug (>= 3.10.1) | ||
rake | ||
rspec (~> 3.5) | ||
|
||
BUNDLED WITH | ||
2.3.26 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
source 'https://rubygems.org' | ||
|
||
# Runtime dependencies | ||
gem 'activerecord', '~>7.2.2' | ||
gem 'pg', '>=1.3' | ||
|
||
# Development dependencies | ||
gem 'rake' | ||
gem 'database_cleaner' | ||
gem 'rspec', '~>3.5' | ||
gem 'gemika', '>=0.8.1' | ||
gem 'pry-byebug', '>=3.10.1' | ||
|
||
# Gem under test | ||
gem 'has_defaults', path: '.' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
PATH | ||
remote: . | ||
specs: | ||
has_defaults (1.2.1) | ||
activerecord | ||
|
||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
activemodel (7.2.2) | ||
activesupport (= 7.2.2) | ||
activerecord (7.2.2) | ||
activemodel (= 7.2.2) | ||
activesupport (= 7.2.2) | ||
timeout (>= 0.4.0) | ||
activesupport (7.2.2) | ||
base64 | ||
benchmark (>= 0.3) | ||
bigdecimal | ||
concurrent-ruby (~> 1.0, >= 1.3.1) | ||
connection_pool (>= 2.2.5) | ||
drb | ||
i18n (>= 1.6, < 2) | ||
logger (>= 1.4.2) | ||
minitest (>= 5.1) | ||
securerandom (>= 0.3) | ||
tzinfo (~> 2.0, >= 2.0.5) | ||
base64 (0.2.0) | ||
benchmark (0.4.0) | ||
bigdecimal (3.1.8) | ||
byebug (11.1.3) | ||
coderay (1.1.3) | ||
concurrent-ruby (1.3.4) | ||
connection_pool (2.4.1) | ||
database_cleaner (2.1.0) | ||
database_cleaner-active_record (>= 2, < 3) | ||
database_cleaner-active_record (2.2.0) | ||
activerecord (>= 5.a) | ||
database_cleaner-core (~> 2.0.0) | ||
database_cleaner-core (2.0.1) | ||
diff-lcs (1.5.1) | ||
drb (2.2.1) | ||
gemika (0.8.3) | ||
i18n (1.14.6) | ||
concurrent-ruby (~> 1.0) | ||
logger (1.6.1) | ||
method_source (1.1.0) | ||
minitest (5.25.2) | ||
pg (1.5.9) | ||
pry (0.14.2) | ||
coderay (~> 1.1) | ||
method_source (~> 1.0) | ||
pry-byebug (3.10.1) | ||
byebug (~> 11.0) | ||
pry (>= 0.13, < 0.15) | ||
rake (13.2.1) | ||
rspec (3.13.0) | ||
rspec-core (~> 3.13.0) | ||
rspec-expectations (~> 3.13.0) | ||
rspec-mocks (~> 3.13.0) | ||
rspec-core (3.13.2) | ||
rspec-support (~> 3.13.0) | ||
rspec-expectations (3.13.3) | ||
diff-lcs (>= 1.2.0, < 2.0) | ||
rspec-support (~> 3.13.0) | ||
rspec-mocks (3.13.2) | ||
diff-lcs (>= 1.2.0, < 2.0) | ||
rspec-support (~> 3.13.0) | ||
rspec-support (3.13.1) | ||
securerandom (0.3.2) | ||
timeout (0.4.2) | ||
tzinfo (2.0.6) | ||
concurrent-ruby (~> 1.0) | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
activerecord (~> 7.2.2) | ||
database_cleaner | ||
gemika (>= 0.8.1) | ||
has_defaults! | ||
pg (>= 1.3) | ||
pry-byebug (>= 3.10.1) | ||
rake | ||
rspec (~> 3.5) | ||
|
||
BUNDLED WITH | ||
2.5.23 |