roqua-support 0.3.3 → 0.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 24fe6b6328c7e8a57bbd3de088117e34d320f9ddc6aaa4954334dcfe5a934d35
4
- data.tar.gz: 6429dbcedaea67f7b8581afca9181fb6854fd467f01ce01d403cf55a8c9b19b2
3
+ metadata.gz: 145ad35d4dd5cca40ea55d6e49ebca48dbaae528732db8f96ead023fd8ea0ce3
4
+ data.tar.gz: bf7690b534eae2d73a27b14af058d880df87268afc1ce9f92f746f1fb7145317
5
5
  SHA512:
6
- metadata.gz: 308371f74905c87008b9a6d91989614fa18d058b75ba3c55f934d17ac68947d0fa0fe1d582bf9b9a67cc2da595d83e446505a10bbd9da285919808c9a729c645
7
- data.tar.gz: 9a2ae0fef0524d771e5306045db5fb4d2172a6e48647355c8a271d1216d39ededf08e89824c123bf14dd561c29898c7a18338efc897ba3143860098dc0a56ea8
6
+ metadata.gz: b05f497f8685ffdbc830db90e1cbe8f92ae52858e6119eb5bcaa7857a2bdfc6c37903314bd131f6776e9cb18a2f20535dda0f3ca41bffaa3e25eec0d18035b44
7
+ data.tar.gz: 996d2195a27618321ed0ef27f55a60ff8cfe7ee8b2c62f060c3ebaa0e73342fe1ddfa879cacafcac5c23ea495331e81810c59cdeea01725408107f08a93cd604
@@ -2,25 +2,12 @@ variables:
2
2
  RAILS_ENV: "test"
3
3
 
4
4
  before_script:
5
+ - if [ -x "$(command -v apk)" ]; then apk add sqlite-dev; fi
5
6
  - export BUNDLE_PATH=$CI_PROJECT_DIR/.gems
6
7
  - bundle --jobs 2 --retry 3
7
8
  - bundle exec appraisal
8
9
  - bundle --jobs 2 --retry 3
9
10
 
10
- .ruby_23: &ruby_23
11
- image: registry.roqua.nl/roqua/roqua-build-images:ruby-2.3-rails-base-test
12
- cache:
13
- key: ruby_23
14
- paths:
15
- - .gems
16
-
17
- .ruby_24: &ruby_24
18
- image: registry.roqua.nl/roqua/roqua-build-images:ruby-2.4-rails-base-test
19
- cache:
20
- key: ruby_24
21
- paths:
22
- - .gems
23
-
24
11
  .ruby_25: &ruby_25
25
12
  image: registry.roqua.nl/roqua/docker-base-images:ruby-2.5
26
13
  cache:
@@ -28,33 +15,25 @@ before_script:
28
15
  paths:
29
16
  - .gems
30
17
 
31
- rails_50_ruby_24:
32
- <<: *ruby_24
33
- script:
34
- - bundle exec appraisal rails50 bundle exec rspec
35
-
36
- rails_50_ruby_25:
37
- <<: *ruby_25
38
- script:
39
- - bundle exec appraisal rails50 bundle exec rspec
40
-
41
- rails_51_ruby_24:
42
- <<: *ruby_24
43
- script:
44
- - bundle exec appraisal rails51 bundle exec rspec
18
+ .ruby_26: &ruby_26
19
+ image: registry.roqua.nl/roqua/docker-base-images:ruby-2.6-builder
20
+ cache:
21
+ key: ruby_26
22
+ paths:
23
+ - .gems
45
24
 
46
25
  rails_51_ruby_25:
47
26
  <<: *ruby_25
48
27
  script:
49
28
  - bundle exec appraisal rails51 bundle exec rspec
50
29
 
51
- rails_52_ruby_24:
52
- <<: *ruby_24
30
+ rails_52_ruby_25:
31
+ <<: *ruby_25
53
32
  script:
54
33
  - bundle exec appraisal rails52 bundle exec rspec
55
34
 
56
- rails_52_ruby_25:
57
- <<: *ruby_25
35
+ rails_52_ruby_26:
36
+ <<: *ruby_26
58
37
  script:
59
38
  - bundle exec appraisal rails52 bundle exec rspec
60
39
 
@@ -62,3 +41,8 @@ rails_60_ruby_25:
62
41
  <<: *ruby_25
63
42
  script:
64
43
  - bundle exec appraisal rails60 bundle exec rspec
44
+
45
+ rails_60_ruby_26:
46
+ <<: *ruby_26
47
+ script:
48
+ - bundle exec appraisal rails60 bundle exec rspec
data/Appraisals CHANGED
@@ -1,13 +1,3 @@
1
- appraise "rails42" do
2
- gem "activesupport", "~> 4.2.10"
3
- gem 'sqlite3', '~> 1.3.6'
4
- end
5
-
6
- appraise "rails50" do
7
- gem "activesupport", "~> 5.0.0"
8
- gem 'sqlite3', '~> 1.3.6'
9
- end
10
-
11
1
  appraise "rails51" do
12
2
  gem "activesupport", "~> 5.1.0"
13
3
  gem 'sqlite3', '~> 1.3.6'
@@ -15,12 +5,12 @@ end
15
5
 
16
6
  appraise "rails52" do
17
7
  gem "activesupport", "~> 5.2.0"
18
- gem 'sqlite3', '~> 1.3.6'
8
+ gem 'sqlite3', '~> 1.4'
9
+ gem 'appsignal', '~> 2.9.8' # test each minor versions we support
19
10
  end
20
11
 
21
- if RUBY_VERSION.to_f >= 2.5
22
- appraise "rails60" do
23
- gem "activesupport", "~> 6.0.0"
24
- gem 'sqlite3', '~> 1.4'
25
- end
12
+ appraise "rails60" do
13
+ gem "activesupport", "~> 6.0.0"
14
+ gem 'sqlite3', '~> 1.4'
15
+ gem 'appsignal', '~> 2.10.6'
26
16
  end
@@ -1,3 +1,7 @@
1
+ ## 0.3.4
2
+
3
+ * gemspec and tests: Removed rails 4.2 and 5.0, remove ruby 2.3 and 2.4, added ruby 2.6, allow appsignal 2.10
4
+
1
5
  ## 0.3.3
2
6
 
3
7
  * Added support for hl7 namespace when reporting errors
data/Gemfile CHANGED
@@ -9,7 +9,6 @@ gem 'roqua_styleguide', git: 'https://gitlab.roqua.nl/roqua/styleguide.git'
9
9
  group :test do
10
10
  gem 'actionpack', '>= 4.0'
11
11
  gem 'active_interaction', '~> 3.0'
12
- gem 'appsignal', '~> 2.9.8'
13
12
  gem 'climate_control' # For ENV modification in specs
14
13
  gem 'combustion', '~> 1.1.1'
15
14
  gem 'fakefs', require: 'fakefs/safe'
@@ -18,4 +17,4 @@ group :test do
18
17
  gem 'rspec-instrumentation-matcher'
19
18
  gem 'rspec-rails'
20
19
  gem 'pry'
21
- end
20
+ end
@@ -1,79 +1,80 @@
1
1
  GIT
2
2
  remote: https://gitlab.roqua.nl/roqua/styleguide.git
3
- revision: e1fbbb611484e295719ed91c4eef889753ac8d8f
3
+ revision: 6d98107ef10d2dc5a4a785a4b0977f100475e007
4
4
  specs:
5
- roqua_styleguide (0.0.6)
6
- rubocop (~> 0.50.0)
5
+ roqua_styleguide (0.0.8)
6
+ rubocop (~> 0.80.0)
7
+ rubocop-rails
7
8
 
8
9
  PATH
9
10
  remote: .
10
11
  specs:
11
- roqua-support (0.3.3)
12
+ roqua-support (0.3.4)
12
13
  active_interaction (~> 3.0)
13
- activesupport (>= 3.2, < 6.1)
14
- appsignal (~> 2.9.8)
14
+ activesupport (>= 5.1, < 6.1)
15
+ appsignal (>= 2.9, < 2.11)
15
16
  naught (~> 1.0)
16
17
  with_advisory_lock (~> 3.2)
17
18
 
18
19
  GEM
19
20
  remote: https://rubygems.org/
20
21
  specs:
21
- actionpack (5.0.1)
22
- actionview (= 5.0.1)
23
- activesupport (= 5.0.1)
24
- rack (~> 2.0)
25
- rack-test (~> 0.6.3)
22
+ actionpack (6.0.2.2)
23
+ actionview (= 6.0.2.2)
24
+ activesupport (= 6.0.2.2)
25
+ rack (~> 2.0, >= 2.0.8)
26
+ rack-test (>= 0.6.3)
26
27
  rails-dom-testing (~> 2.0)
27
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
- actionview (5.0.1)
29
- activesupport (= 5.0.1)
28
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
29
+ actionview (6.0.2.2)
30
+ activesupport (= 6.0.2.2)
30
31
  builder (~> 3.1)
31
- erubis (~> 2.7.0)
32
+ erubi (~> 1.4)
32
33
  rails-dom-testing (~> 2.0)
33
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
34
- active_interaction (3.4.0)
35
- activemodel (>= 4, < 6)
36
- activemodel (5.0.1)
37
- activesupport (= 5.0.1)
38
- activerecord (5.0.1)
39
- activemodel (= 5.0.1)
40
- activesupport (= 5.0.1)
41
- arel (~> 7.0)
42
- activesupport (5.0.1)
34
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
35
+ active_interaction (3.8.2)
36
+ activemodel (>= 4, < 7)
37
+ activemodel (6.0.2.2)
38
+ activesupport (= 6.0.2.2)
39
+ activerecord (6.0.2.2)
40
+ activemodel (= 6.0.2.2)
41
+ activesupport (= 6.0.2.2)
42
+ activesupport (6.0.2.2)
43
43
  concurrent-ruby (~> 1.0, >= 1.0.2)
44
- i18n (~> 0.7)
44
+ i18n (>= 0.7, < 2)
45
45
  minitest (~> 5.1)
46
46
  tzinfo (~> 1.1)
47
- appraisal (2.1.0)
47
+ zeitwerk (~> 2.2)
48
+ appraisal (2.2.0)
48
49
  bundler
49
50
  rake
50
51
  thor (>= 0.14.0)
51
- appsignal (2.9.8)
52
+ appsignal (2.10.6)
52
53
  rack
53
- arel (7.1.4)
54
- ast (2.3.0)
55
- builder (3.2.3)
54
+ ast (2.4.0)
55
+ builder (3.2.4)
56
56
  climate_control (0.2.0)
57
- coderay (1.1.1)
58
- combustion (1.1.1)
57
+ coderay (1.1.2)
58
+ combustion (1.1.2)
59
59
  activesupport (>= 3.0.0)
60
60
  railties (>= 3.0.0)
61
61
  thor (>= 0.14.6)
62
- concurrent-ruby (1.0.4)
63
- delayed_job (4.1.4)
64
- activesupport (>= 3.0, < 5.2)
65
- delayed_job_active_record (4.1.2)
66
- activerecord (>= 3.0, < 5.2)
62
+ concurrent-ruby (1.1.6)
63
+ crass (1.0.6)
64
+ delayed_job (4.1.8)
65
+ activesupport (>= 3.0, < 6.1)
66
+ delayed_job_active_record (4.1.4)
67
+ activerecord (>= 3.0, < 6.1)
67
68
  delayed_job (>= 3.0, < 5)
68
69
  diff-lcs (1.3)
69
- erubis (2.7.0)
70
- fakefs (0.15.0)
71
- ffi (1.9.17)
70
+ erubi (1.9.0)
71
+ fakefs (1.2.2)
72
+ ffi (1.12.2)
72
73
  formatador (0.2.5)
73
- guard (2.14.0)
74
+ guard (2.16.2)
74
75
  formatador (>= 0.2.4)
75
76
  listen (>= 2.7, < 4.0)
76
- lumberjack (~> 1.0)
77
+ lumberjack (>= 1.0.12, < 2.0)
77
78
  nenv (~> 0.1)
78
79
  notiffany (~> 0.0)
79
80
  pry (>= 0.9.12)
@@ -82,97 +83,102 @@ GEM
82
83
  guard-rspec (4.2.10)
83
84
  guard (~> 2.1)
84
85
  rspec (>= 2.14, < 4.0)
85
- i18n (0.7.0)
86
- listen (3.1.5)
87
- rb-fsevent (~> 0.9, >= 0.9.4)
88
- rb-inotify (~> 0.9, >= 0.9.7)
89
- ruby_dep (~> 1.2)
90
- loofah (2.0.3)
86
+ i18n (1.8.2)
87
+ concurrent-ruby (~> 1.0)
88
+ jaro_winkler (1.5.4)
89
+ listen (3.2.1)
90
+ rb-fsevent (~> 0.10, >= 0.10.3)
91
+ rb-inotify (~> 0.9, >= 0.9.10)
92
+ loofah (2.5.0)
93
+ crass (~> 1.0.2)
91
94
  nokogiri (>= 1.5.9)
92
- lumberjack (1.0.11)
93
- method_source (0.8.2)
94
- mini_portile2 (2.1.0)
95
- minitest (5.10.1)
95
+ lumberjack (1.2.4)
96
+ method_source (1.0.0)
97
+ mini_portile2 (2.4.0)
98
+ minitest (5.14.0)
96
99
  naught (1.1.0)
97
100
  nenv (0.3.0)
98
- nokogiri (1.7.0.1)
99
- mini_portile2 (~> 2.1.0)
100
- notiffany (0.1.1)
101
+ nokogiri (1.10.9)
102
+ mini_portile2 (~> 2.4.0)
103
+ notiffany (0.1.3)
101
104
  nenv (~> 0.1)
102
105
  shellany (~> 0.0)
103
- parallel (1.12.0)
104
- parser (2.4.0.0)
105
- ast (~> 2.2)
106
- powerpack (0.1.1)
107
- pry (0.10.4)
108
- coderay (~> 1.1.0)
109
- method_source (~> 0.8.1)
110
- slop (~> 3.4)
111
- rack (2.0.7)
112
- rack-test (0.6.3)
113
- rack (>= 1.0)
114
- rails-dom-testing (2.0.2)
115
- activesupport (>= 4.2.0, < 6.0)
116
- nokogiri (~> 1.6)
117
- rails-html-sanitizer (1.0.3)
118
- loofah (~> 2.0)
119
- railties (5.0.1)
120
- actionpack (= 5.0.1)
121
- activesupport (= 5.0.1)
106
+ parallel (1.19.1)
107
+ parser (2.7.1.2)
108
+ ast (~> 2.4.0)
109
+ pry (0.13.1)
110
+ coderay (~> 1.1)
111
+ method_source (~> 1.0)
112
+ rack (2.2.2)
113
+ rack-test (1.1.0)
114
+ rack (>= 1.0, < 3)
115
+ rails-dom-testing (2.0.3)
116
+ activesupport (>= 4.2.0)
117
+ nokogiri (>= 1.6)
118
+ rails-html-sanitizer (1.3.0)
119
+ loofah (~> 2.3)
120
+ railties (6.0.2.2)
121
+ actionpack (= 6.0.2.2)
122
+ activesupport (= 6.0.2.2)
122
123
  method_source
123
124
  rake (>= 0.8.7)
124
- thor (>= 0.18.1, < 2.0)
125
- rainbow (2.2.2)
126
- rake
127
- rake (12.1.0)
128
- rb-fsevent (0.9.8)
129
- rb-inotify (0.9.7)
130
- ffi (>= 0.5.0)
131
- responders (2.3.0)
132
- railties (>= 4.2.0, < 5.1)
133
- rspec (3.5.0)
134
- rspec-core (~> 3.5.0)
135
- rspec-expectations (~> 3.5.0)
136
- rspec-mocks (~> 3.5.0)
137
- rspec-core (3.5.4)
138
- rspec-support (~> 3.5.0)
139
- rspec-expectations (3.5.0)
125
+ thor (>= 0.20.3, < 2.0)
126
+ rainbow (3.0.0)
127
+ rake (13.0.1)
128
+ rb-fsevent (0.10.4)
129
+ rb-inotify (0.10.1)
130
+ ffi (~> 1.0)
131
+ responders (3.0.0)
132
+ actionpack (>= 5.0)
133
+ railties (>= 5.0)
134
+ rexml (3.2.4)
135
+ rspec (3.9.0)
136
+ rspec-core (~> 3.9.0)
137
+ rspec-expectations (~> 3.9.0)
138
+ rspec-mocks (~> 3.9.0)
139
+ rspec-core (3.9.2)
140
+ rspec-support (~> 3.9.3)
141
+ rspec-expectations (3.9.1)
140
142
  diff-lcs (>= 1.2.0, < 2.0)
141
- rspec-support (~> 3.5.0)
142
- rspec-instrumentation-matcher (0.0.4)
143
+ rspec-support (~> 3.9.0)
144
+ rspec-instrumentation-matcher (0.0.9)
143
145
  activesupport
144
146
  rspec-expectations
145
- rspec-mocks (3.5.0)
147
+ rspec-mocks (3.9.1)
146
148
  diff-lcs (>= 1.2.0, < 2.0)
147
- rspec-support (~> 3.5.0)
148
- rspec-rails (3.5.2)
149
- actionpack (>= 3.0)
150
- activesupport (>= 3.0)
151
- railties (>= 3.0)
152
- rspec-core (~> 3.5.0)
153
- rspec-expectations (~> 3.5.0)
154
- rspec-mocks (~> 3.5.0)
155
- rspec-support (~> 3.5.0)
156
- rspec-support (3.5.0)
157
- rubocop (0.50.0)
149
+ rspec-support (~> 3.9.0)
150
+ rspec-rails (4.0.0)
151
+ actionpack (>= 4.2)
152
+ activesupport (>= 4.2)
153
+ railties (>= 4.2)
154
+ rspec-core (~> 3.9)
155
+ rspec-expectations (~> 3.9)
156
+ rspec-mocks (~> 3.9)
157
+ rspec-support (~> 3.9)
158
+ rspec-support (3.9.3)
159
+ rubocop (0.80.1)
160
+ jaro_winkler (~> 1.5.1)
158
161
  parallel (~> 1.10)
159
- parser (>= 2.3.3.1, < 3.0)
160
- powerpack (~> 0.1)
161
- rainbow (>= 2.2.2, < 3.0)
162
+ parser (>= 2.7.0.1)
163
+ rainbow (>= 2.2.2, < 4.0)
164
+ rexml
162
165
  ruby-progressbar (~> 1.7)
163
- unicode-display_width (~> 1.0, >= 1.0.1)
164
- ruby-progressbar (1.8.3)
165
- ruby_dep (1.5.0)
166
+ unicode-display_width (>= 1.4.0, < 1.7)
167
+ rubocop-rails (2.5.2)
168
+ activesupport
169
+ rack (>= 1.1)
170
+ rubocop (>= 0.72.0)
171
+ ruby-progressbar (1.10.1)
166
172
  shellany (0.0.1)
167
- slop (3.6.0)
168
- thor (0.19.4)
169
- thread_safe (0.3.5)
173
+ thor (1.0.1)
174
+ thread_safe (0.3.6)
170
175
  timecop (0.9.1)
171
- tzinfo (1.2.2)
176
+ tzinfo (1.2.7)
172
177
  thread_safe (~> 0.1)
173
- unicode-display_width (1.3.0)
178
+ unicode-display_width (1.6.1)
174
179
  with_advisory_lock (3.2.0)
175
180
  activerecord (>= 3.2)
181
+ zeitwerk (2.3.0)
176
182
 
177
183
  PLATFORMS
178
184
  ruby
@@ -181,7 +187,6 @@ DEPENDENCIES
181
187
  actionpack (>= 4.0)
182
188
  active_interaction (~> 3.0)
183
189
  appraisal
184
- appsignal (~> 2.9.8)
185
190
  bundler (~> 2.0)
186
191
  climate_control
187
192
  combustion (~> 1.1.1)
@@ -3,17 +3,16 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "appraisal"
6
- gem "roqua_styleguide", :git => "https://gitlab.roqua.nl/roqua/styleguide.git"
6
+ gem "roqua_styleguide", git: "https://gitlab.roqua.nl/roqua/styleguide.git"
7
7
  gem "activesupport", "~> 5.1.0"
8
8
  gem "sqlite3", "~> 1.3.6"
9
9
 
10
10
  group :test do
11
11
  gem "actionpack", ">= 4.0"
12
12
  gem "active_interaction", "~> 3.0"
13
- gem "appsignal", "~> 2.9.8"
14
13
  gem "climate_control"
15
14
  gem "combustion", "~> 1.1.1"
16
- gem "fakefs", :require => "fakefs/safe"
15
+ gem "fakefs", require: "fakefs/safe"
17
16
  gem "guard-rspec", "~> 4.2.6"
18
17
  gem "responders"
19
18
  gem "rspec-instrumentation-matcher"
@@ -21,4 +20,4 @@ group :test do
21
20
  gem "pry"
22
21
  end
23
22
 
24
- gemspec :path => "../"
23
+ gemspec path: "../"
@@ -3,17 +3,17 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "appraisal"
6
- gem "roqua_styleguide", :git => "https://gitlab.roqua.nl/roqua/styleguide.git"
6
+ gem "roqua_styleguide", git: "https://gitlab.roqua.nl/roqua/styleguide.git"
7
7
  gem "activesupport", "~> 5.2.0"
8
- gem "sqlite3", "~> 1.3.6"
8
+ gem "sqlite3", "~> 1.4"
9
+ gem "appsignal", "~> 2.9.8"
9
10
 
10
11
  group :test do
11
12
  gem "actionpack", ">= 4.0"
12
13
  gem "active_interaction", "~> 3.0"
13
- gem "appsignal", "~> 2.9.8"
14
14
  gem "climate_control"
15
15
  gem "combustion", "~> 1.1.1"
16
- gem "fakefs", :require => "fakefs/safe"
16
+ gem "fakefs", require: "fakefs/safe"
17
17
  gem "guard-rspec", "~> 4.2.6"
18
18
  gem "responders"
19
19
  gem "rspec-instrumentation-matcher"
@@ -21,4 +21,4 @@ group :test do
21
21
  gem "pry"
22
22
  end
23
23
 
24
- gemspec :path => "../"
24
+ gemspec path: "../"
@@ -3,17 +3,17 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "appraisal"
6
- gem "roqua_styleguide", :git => "https://gitlab.roqua.nl/roqua/styleguide.git"
6
+ gem "roqua_styleguide", git: "https://gitlab.roqua.nl/roqua/styleguide.git"
7
7
  gem "activesupport", "~> 6.0.0"
8
8
  gem "sqlite3", "~> 1.4"
9
+ gem "appsignal", "~> 2.10.6"
9
10
 
10
11
  group :test do
11
12
  gem "actionpack", ">= 4.0"
12
13
  gem "active_interaction", "~> 3.0"
13
- gem "appsignal", "~> 2.9.8"
14
14
  gem "climate_control"
15
15
  gem "combustion", "~> 1.1.1"
16
- gem "fakefs", :require => "fakefs/safe"
16
+ gem "fakefs", require: "fakefs/safe"
17
17
  gem "guard-rspec", "~> 4.2.6"
18
18
  gem "responders"
19
19
  gem "rspec-instrumentation-matcher"
@@ -21,4 +21,4 @@ group :test do
21
21
  gem "pry"
22
22
  end
23
23
 
24
- gemspec :path => "../"
24
+ gemspec path: "../"
@@ -1,5 +1,5 @@
1
1
  module Roqua
2
2
  module Support
3
- VERSION = '0.3.3'.freeze
3
+ VERSION = '0.3.4'.freeze
4
4
  end
5
5
  end
@@ -18,11 +18,12 @@ Gem::Specification.new do |gem|
18
18
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
19
19
  gem.require_paths = ["lib"]
20
20
 
21
+ gem.required_ruby_version = '>= 2.5'
21
22
  gem.add_dependency 'active_interaction', '~> 3.0'
22
- gem.add_dependency 'activesupport', '>= 3.2', '< 6.1'
23
+ gem.add_dependency 'activesupport', '>= 5.1', '< 6.1'
23
24
  gem.add_dependency 'naught', '~> 1.0'
24
25
  gem.add_dependency 'with_advisory_lock', '~> 3.2'
25
- gem.add_dependency 'appsignal', '~> 2.9.8'
26
+ gem.add_dependency 'appsignal', '>= 2.9', '< 2.11'
26
27
 
27
28
  gem.add_development_dependency 'bundler', '~> 2.0'
28
29
  gem.add_development_dependency 'delayed_job_active_record'
@@ -94,6 +94,7 @@ describe 'Error reporting' do
94
94
  let(:transaction) { double("transaction") }
95
95
 
96
96
  before do
97
+ Appsignal.config = Appsignal::Config.new(Dir.pwd, "test")
97
98
  allow(Appsignal).to receive(:active?).and_return(true)
98
99
  allow(Appsignal).to receive(:is_ignored_exception?).and_return(false)
99
100
  allow(Appsignal).to receive(:agent).and_return(agent)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: roqua-support
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marten Veldthuis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-01-14 00:00:00.000000000 Z
11
+ date: 2020-05-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: active_interaction
@@ -30,7 +30,7 @@ dependencies:
30
30
  requirements:
31
31
  - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: '3.2'
33
+ version: '5.1'
34
34
  - - "<"
35
35
  - !ruby/object:Gem::Version
36
36
  version: '6.1'
@@ -40,7 +40,7 @@ dependencies:
40
40
  requirements:
41
41
  - - ">="
42
42
  - !ruby/object:Gem::Version
43
- version: '3.2'
43
+ version: '5.1'
44
44
  - - "<"
45
45
  - !ruby/object:Gem::Version
46
46
  version: '6.1'
@@ -76,16 +76,22 @@ dependencies:
76
76
  name: appsignal
77
77
  requirement: !ruby/object:Gem::Requirement
78
78
  requirements:
79
- - - "~>"
79
+ - - ">="
80
+ - !ruby/object:Gem::Version
81
+ version: '2.9'
82
+ - - "<"
80
83
  - !ruby/object:Gem::Version
81
- version: 2.9.8
84
+ version: '2.11'
82
85
  type: :runtime
83
86
  prerelease: false
84
87
  version_requirements: !ruby/object:Gem::Requirement
85
88
  requirements:
86
- - - "~>"
89
+ - - ">="
87
90
  - !ruby/object:Gem::Version
88
- version: 2.9.8
91
+ version: '2.9'
92
+ - - "<"
93
+ - !ruby/object:Gem::Version
94
+ version: '2.11'
89
95
  - !ruby/object:Gem::Dependency
90
96
  name: bundler
91
97
  requirement: !ruby/object:Gem::Requirement
@@ -182,8 +188,6 @@ files:
182
188
  - README.md
183
189
  - Rakefile
184
190
  - circle.yml
185
- - gemfiles/rails42.gemfile
186
- - gemfiles/rails50.gemfile
187
191
  - gemfiles/rails51.gemfile
188
192
  - gemfiles/rails52.gemfile
189
193
  - gemfiles/rails60.gemfile
@@ -261,15 +265,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
261
265
  requirements:
262
266
  - - ">="
263
267
  - !ruby/object:Gem::Version
264
- version: '0'
268
+ version: '2.5'
265
269
  required_rubygems_version: !ruby/object:Gem::Requirement
266
270
  requirements:
267
271
  - - ">="
268
272
  - !ruby/object:Gem::Version
269
273
  version: '0'
270
274
  requirements: []
271
- rubyforge_project:
272
- rubygems_version: 2.7.6.2
275
+ rubygems_version: 3.0.6
273
276
  signing_key:
274
277
  specification_version: 4
275
278
  summary: Helper objects and proxies used by a lot of RoQua applications
@@ -1,24 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "appraisal"
6
- gem "roqua_styleguide", :git => "https://gitlab.roqua.nl/roqua/styleguide.git"
7
- gem "activesupport", "~> 4.2.10"
8
- gem "sqlite3", "~> 1.3.6"
9
-
10
- group :test do
11
- gem "actionpack", ">= 4.0"
12
- gem "active_interaction", "~> 3.0"
13
- gem "appsignal", "~> 2.9.8"
14
- gem "climate_control"
15
- gem "combustion", "~> 1.1.1"
16
- gem "fakefs", :require => "fakefs/safe"
17
- gem "guard-rspec", "~> 4.2.6"
18
- gem "responders"
19
- gem "rspec-instrumentation-matcher"
20
- gem "rspec-rails"
21
- gem "pry"
22
- end
23
-
24
- gemspec :path => "../"
@@ -1,24 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "appraisal"
6
- gem "roqua_styleguide", :git => "https://gitlab.roqua.nl/roqua/styleguide.git"
7
- gem "activesupport", "~> 5.0.0"
8
- gem "sqlite3", "~> 1.3.6"
9
-
10
- group :test do
11
- gem "actionpack", ">= 4.0"
12
- gem "active_interaction", "~> 3.0"
13
- gem "appsignal", "~> 2.9.8"
14
- gem "climate_control"
15
- gem "combustion", "~> 1.1.1"
16
- gem "fakefs", :require => "fakefs/safe"
17
- gem "guard-rspec", "~> 4.2.6"
18
- gem "responders"
19
- gem "rspec-instrumentation-matcher"
20
- gem "rspec-rails"
21
- gem "pry"
22
- end
23
-
24
- gemspec :path => "../"