Skip to content

Commit cf61517

Browse files
authored
Merge pull request #200 from openHPI/update-gemspec
Update gemspec
2 parents bbc412e + 77aa2fe commit cf61517

File tree

4 files changed

+10
-12
lines changed

4 files changed

+10
-12
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Setup Ruby
1313
uses: ruby/setup-ruby@v1
1414
with:
15-
ruby-version: 2.7
15+
ruby-version: 3.1
1616
bundler-cache: true
1717

1818
- name: Run tests
@@ -38,7 +38,7 @@ jobs:
3838
- name: Setup Ruby
3939
uses: ruby/setup-ruby@v1
4040
with:
41-
ruby-version: 2.7
41+
ruby-version: 3.1
4242
bundler-cache: true
4343

4444
- name: Run rubocop

Gemfile.lock

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,22 @@
11
PATH
22
remote: .
33
specs:
4-
proforma (0.7)
4+
proforma (0.7.1)
55
activemodel (>= 5.2.3, < 8.0.0)
6-
activesupport (>= 5.2.3, < 7.0.0)
6+
activesupport (>= 5.2.3, < 8.0.0)
77
nokogiri (>= 1.10.2, < 2.0.0)
88
rubyzip (>= 1.2.2, < 3.0.0)
99

1010
GEM
1111
remote: https://rubygems.org/
1212
specs:
13-
activemodel (6.1.4.4)
14-
activesupport (= 6.1.4.4)
15-
activesupport (6.1.4.4)
13+
activemodel (7.0.0)
14+
activesupport (= 7.0.0)
15+
activesupport (7.0.0)
1616
concurrent-ruby (~> 1.0, >= 1.0.2)
1717
i18n (>= 1.6, < 2)
1818
minitest (>= 5.1)
1919
tzinfo (~> 2.0)
20-
zeitwerk (~> 2.3)
2120
ast (2.4.2)
2221
byebug (11.1.3)
2322
coderay (1.1.3)
@@ -112,11 +111,10 @@ GEM
112111
simplecov_json_formatter (~> 0.1)
113112
simplecov-html (0.12.3)
114113
simplecov_json_formatter (0.1.3)
115-
thor (1.1.0)
114+
thor (1.2.1)
116115
tzinfo (2.0.4)
117116
concurrent-ruby (~> 1.0)
118117
unicode-display_width (2.1.0)
119-
zeitwerk (2.5.3)
120118

121119
PLATFORMS
122120
ruby

lib/proforma/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Proforma
4-
VERSION = '0.7'
4+
VERSION = '0.7.1'
55
end

proforma.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Gem::Specification.new do |spec|
3939
spec.require_paths = ['lib']
4040

4141
spec.add_dependency 'activemodel', '>= 5.2.3', '< 8.0.0'
42-
spec.add_dependency 'activesupport', '>= 5.2.3', '< 7.0.0'
42+
spec.add_dependency 'activesupport', '>= 5.2.3', '< 8.0.0'
4343
spec.add_dependency 'nokogiri', '>= 1.10.2', '< 2.0.0'
4444
spec.add_dependency 'rubyzip', '>= 1.2.2', '< 3.0.0'
4545

0 commit comments

Comments
 (0)