Skip to content

Commit 959962d

Browse files
committed
Support Rails 7
1 parent 9bc2a15 commit 959962d

File tree

3 files changed

+16
-19
lines changed

3 files changed

+16
-19
lines changed

Gemfile.lock

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,32 @@
11
PATH
22
remote: .
33
specs:
4-
hash_with_dot_access (1.0.1)
5-
activesupport (>= 5.0.0, < 7.0)
4+
hash_with_dot_access (1.1.0)
5+
activesupport (>= 5.0.0, < 8.0)
66

77
GEM
88
remote: https://rubygems.org/
99
specs:
10-
activesupport (6.0.3.3)
10+
activesupport (7.0.0)
1111
concurrent-ruby (~> 1.0, >= 1.0.2)
12-
i18n (>= 0.7, < 2)
13-
minitest (~> 5.1)
14-
tzinfo (~> 1.1)
15-
zeitwerk (~> 2.2, >= 2.2.2)
16-
concurrent-ruby (1.1.7)
17-
i18n (1.8.5)
12+
i18n (>= 1.6, < 2)
13+
minitest (>= 5.1)
14+
tzinfo (~> 2.0)
15+
concurrent-ruby (1.1.9)
16+
i18n (1.8.11)
17+
concurrent-ruby (~> 1.0)
18+
minitest (5.15.0)
19+
rake (13.0.6)
20+
tzinfo (2.0.4)
1821
concurrent-ruby (~> 1.0)
19-
minitest (5.14.2)
20-
rake (12.3.3)
21-
thread_safe (0.3.6)
22-
tzinfo (1.2.7)
23-
thread_safe (~> 0.1)
24-
zeitwerk (2.4.0)
2522

2623
PLATFORMS
2724
ruby
2825

2926
DEPENDENCIES
3027
bundler
3128
hash_with_dot_access!
32-
rake (~> 12.0)
29+
rake (~> 13.0)
3330

3431
BUNDLED WITH
3532
2.1.4

hash_with_dot_access.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ Gem::Specification.new do |spec|
1717
end
1818
spec.require_paths = ["lib"]
1919

20-
spec.add_runtime_dependency "activesupport", [">= 5.0.0", "< 7.0"]
20+
spec.add_runtime_dependency "activesupport", [">= 5.0.0", "< 8.0"]
2121

2222
spec.add_development_dependency "bundler"
23-
spec.add_development_dependency "rake", "~> 12.0"
23+
spec.add_development_dependency "rake", "~> 13.0"
2424
end

lib/hash_with_dot_access/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module HashWithDotAccess
2-
VERSION = "1.1.0"
2+
VERSION = "1.2.0"
33
end

0 commit comments

Comments
 (0)