Skip to content

Commit 78803cd

Browse files
authored
Remove Coveralls remainings, update dependencies (#108)
* Remove Coveralls remainings, update dependencies * Downgrade sqlite3 gem because 2.x is not (yet) allowed in ActiveRecord * Specify sqlite3 version constraint * Set sqlite3 version constraint to 1.4.x * Bump version to 0.1.12
1 parent c1340b4 commit 78803cd

7 files changed

Lines changed: 53 additions & 35 deletions

File tree

.circleci/config.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@ version: 2.1
22

33
orbs:
44
ruby: circleci/ruby@2.0.1
5-
coveralls: coveralls/coveralls@1.0.6
65

76
jobs:
87
build:
98
docker:
10-
- image: 'cimg/ruby:3.2.5-node'
9+
- image: 'cimg/ruby:3.3.4-node'
1110

1211
working_directory: ~/repo
1312

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/.bundle/
22
/.yardoc
33
/_yardoc/
4-
/coverage/
54
/doc/
65
/pkg/
76
/spec/reports/

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.2.5
1+
3.3.4

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# v0.1.12 2024-07-31
2+
3+
### Changed
4+
- Remove Coveralls remainings
5+
- Upgrade dependencies
6+
7+
[Compare v0.1.11...v0.1.12](https://github.com/nxt-insurance/nxt_state_machine/compare/v0.1.11...v0.1.12)
8+
19
# v0.1.11 2023-06-29
210

311
### Added

Gemfile.lock

Lines changed: 41 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,69 @@
11
PATH
22
remote: .
33
specs:
4-
nxt_state_machine (0.1.11)
4+
nxt_state_machine (0.1.12)
55
activesupport
66
nxt_registry (~> 0.3.0)
77

88
GEM
99
remote: https://rubygems.org/
1010
specs:
11-
activemodel (7.0.7.2)
12-
activesupport (= 7.0.7.2)
13-
activerecord (7.0.7.2)
14-
activemodel (= 7.0.7.2)
15-
activesupport (= 7.0.7.2)
16-
activesupport (7.0.7.2)
11+
activemodel (7.1.3.4)
12+
activesupport (= 7.1.3.4)
13+
activerecord (7.1.3.4)
14+
activemodel (= 7.1.3.4)
15+
activesupport (= 7.1.3.4)
16+
timeout (>= 0.4.0)
17+
activesupport (7.1.3.4)
18+
base64
19+
bigdecimal
1720
concurrent-ruby (~> 1.0, >= 1.0.2)
21+
connection_pool (>= 2.2.5)
22+
drb
1823
i18n (>= 1.6, < 2)
1924
minitest (>= 5.1)
25+
mutex_m
2026
tzinfo (~> 2.0)
27+
base64 (0.2.0)
28+
bigdecimal (3.1.8)
2129
coderay (1.1.3)
22-
concurrent-ruby (1.2.2)
23-
diff-lcs (1.5.0)
24-
i18n (1.14.1)
30+
concurrent-ruby (1.3.3)
31+
connection_pool (2.4.1)
32+
diff-lcs (1.5.1)
33+
drb (2.2.1)
34+
i18n (1.14.5)
2535
concurrent-ruby (~> 1.0)
26-
method_source (1.0.0)
27-
mini_portile2 (2.8.2)
28-
minitest (5.19.0)
36+
method_source (1.1.0)
37+
minitest (5.24.1)
38+
mutex_m (0.2.0)
2939
nxt_registry (0.3.10)
3040
activesupport
3141
pry (0.14.2)
3242
coderay (~> 1.1)
3343
method_source (~> 1.0)
3444
rake (13.2.1)
35-
rexml (3.2.5)
36-
rspec (3.12.0)
37-
rspec-core (~> 3.12.0)
38-
rspec-expectations (~> 3.12.0)
39-
rspec-mocks (~> 3.12.0)
40-
rspec-core (3.12.2)
41-
rspec-support (~> 3.12.0)
42-
rspec-expectations (3.12.3)
45+
rexml (3.3.2)
46+
strscan
47+
rspec (3.13.0)
48+
rspec-core (~> 3.13.0)
49+
rspec-expectations (~> 3.13.0)
50+
rspec-mocks (~> 3.13.0)
51+
rspec-core (3.13.0)
52+
rspec-support (~> 3.13.0)
53+
rspec-expectations (3.13.1)
4354
diff-lcs (>= 1.2.0, < 2.0)
44-
rspec-support (~> 3.12.0)
45-
rspec-mocks (3.12.5)
55+
rspec-support (~> 3.13.0)
56+
rspec-mocks (3.13.1)
4657
diff-lcs (>= 1.2.0, < 2.0)
47-
rspec-support (~> 3.12.0)
48-
rspec-support (3.12.1)
58+
rspec-support (~> 3.13.0)
59+
rspec-support (3.13.1)
4960
rspec_junit_formatter (0.6.0)
5061
rspec-core (>= 2, < 4, != 2.12.0)
5162
ruby-graphviz (1.2.5)
5263
rexml
53-
sqlite3 (1.6.3)
54-
mini_portile2 (~> 2.8.0)
64+
sqlite3 (1.4.4)
65+
strscan (3.1.0)
66+
timeout (0.4.1)
5567
tzinfo (2.0.6)
5668
concurrent-ruby (~> 1.0)
5769

@@ -67,7 +79,7 @@ DEPENDENCIES
6779
rspec (~> 3.0)
6880
rspec_junit_formatter
6981
ruby-graphviz
70-
sqlite3
82+
sqlite3 (~> 1.4.4)
7183

7284
BUNDLED WITH
73-
2.1.4
85+
2.5.15

lib/nxt_state_machine/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module NxtStateMachine
2-
VERSION = '0.1.11'
2+
VERSION = '0.1.12'
33
end

nxt_state_machine.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ Gem::Specification.new do |spec|
4242
spec.add_development_dependency "rspec", "~> 3.0"
4343
spec.add_development_dependency "pry"
4444
spec.add_development_dependency "activerecord"
45-
spec.add_development_dependency "sqlite3"
45+
spec.add_development_dependency "sqlite3", "~> 1.4.4"
4646
spec.add_development_dependency "ruby-graphviz"
4747
end

0 commit comments

Comments
 (0)