outbox-rails 0.4.1 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 525a3a52879108983b9c2afc5353808de7b5caf1
4
- data.tar.gz: 10b21890104eb4695e7f89d69955833fa57d3e38
2
+ SHA256:
3
+ metadata.gz: bef27790295cecc443c8033e15c8ee115d2d53046294e0d73d0b2a41104116a5
4
+ data.tar.gz: 2cc95dd43778dd20a711fb88613f3761d86700a5e321e22f7dfd2cd5945a3199
5
5
  SHA512:
6
- metadata.gz: e83c7badbd9b68e11587732816c191589645a7593d74cce5a98209abbbf2eedc04ef2900b1a17b3cbfabb5fc740281c12ad7acdde31e2015fe2f17bf781b628a
7
- data.tar.gz: 944abb48fee1557ea0e5e7dabfedd61d50ab25e2eeb0696251cd47e0df8db7d61460f010a19c0c57069b5c3d36dca65152cf48ae8f648fe74d2ac831d82d9b0b
6
+ metadata.gz: 20b174a486df85b5ad6cd72f3cc73b85dd30fa25bc82abedacb70bf483e4fbd03c20b2c28daba5b55fc0dd01ac864c3328b8b4ece244f505ea5b1a978866677d
7
+ data.tar.gz: f5d6846935fac03be5550f48ccef6b88d69986227da4b22fbe4129c19e2db068f2165c8eeba23edca7653bbb2dfb790014b3d4c330eaedecddf884abc665eeea
@@ -0,0 +1,32 @@
1
+ AllCops:
2
+ Exclude:
3
+ - 'gemfiles/**/*'
4
+ - 'vendor/**/*'
5
+ - 'lib/generators/*/notifier/templates/*'
6
+ DisplayCopNames: true
7
+ DisplayStyleGuide: true
8
+ NewCops: enable
9
+
10
+ Layout/LineLength:
11
+ Exclude:
12
+ - 'outbox-rails.gemspec'
13
+ IgnoreCopDirectives: true
14
+ Max: 100
15
+
16
+ Metrics/BlockLength:
17
+ Exclude:
18
+ - 'spec/**/*'
19
+
20
+ Metrics/ClassLength:
21
+ Max: 150
22
+
23
+ Metrics/MethodLength:
24
+ Max: 15
25
+
26
+ Naming/FileName:
27
+ Exclude:
28
+ - 'Appraisals'
29
+ - 'lib/outbox-rails.rb'
30
+
31
+ Style/Documentation:
32
+ Enabled: false
@@ -0,0 +1,16 @@
1
+ sudo: false
2
+ cache: bundler
3
+ language: ruby
4
+ rvm:
5
+ - 2.6.6
6
+ - 2.7.1
7
+ gemfile:
8
+ - gemfiles/rails_5.0.gemfile
9
+ - gemfiles/rails_5.1.gemfile
10
+ - gemfiles/rails_5.2.gemfile
11
+ - gemfiles/rails_6.0.gemfile
12
+ before_install:
13
+ - gem install bundler:2.1.4
14
+ script:
15
+ - bundle exec rubocop
16
+ - bundle exec rspec
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ appraise 'rails-5.0' do
4
+ gem 'rails', '~> 5.0.0'
5
+ end
6
+
7
+ appraise 'rails-5.1' do
8
+ gem 'rails', '~> 5.1.0'
9
+ end
10
+
11
+ appraise 'rails-5.2' do
12
+ gem 'rails', '~> 5.2.0'
13
+ end
14
+
15
+ appraise 'rails-6.0' do
16
+ gem 'rails', '~> 6.0.0'
17
+ end
data/Gemfile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  source 'https://rubygems.org'
2
4
 
3
5
  # Specify your gem's dependencies in outbox-rails.gemspec
data/Rakefile CHANGED
@@ -1,6 +1,8 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'bundler/gem_tasks'
2
4
  require 'rspec/core/rake_task'
3
5
 
4
6
  RSpec::Core::RakeTask.new(:spec)
5
7
 
6
- task :default => :spec
8
+ task default: :spec
data/config.ru CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'rubygems'
2
4
  require 'bundler'
3
5
 
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~> 5.0.0"
6
+
7
+ gemspec path: "../"
@@ -0,0 +1,176 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ outbox-rails (1.0.0)
5
+ outbox (~> 0.2.0)
6
+ rails (>= 5.0, < 7)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actioncable (5.0.7.2)
12
+ actionpack (= 5.0.7.2)
13
+ nio4r (>= 1.2, < 3.0)
14
+ websocket-driver (~> 0.6.1)
15
+ actionmailer (5.0.7.2)
16
+ actionpack (= 5.0.7.2)
17
+ actionview (= 5.0.7.2)
18
+ activejob (= 5.0.7.2)
19
+ mail (~> 2.5, >= 2.5.4)
20
+ rails-dom-testing (~> 2.0)
21
+ actionpack (5.0.7.2)
22
+ actionview (= 5.0.7.2)
23
+ activesupport (= 5.0.7.2)
24
+ rack (~> 2.0)
25
+ rack-test (~> 0.6.3)
26
+ rails-dom-testing (~> 2.0)
27
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
+ actionview (5.0.7.2)
29
+ activesupport (= 5.0.7.2)
30
+ builder (~> 3.1)
31
+ erubis (~> 2.7.0)
32
+ rails-dom-testing (~> 2.0)
33
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
+ activejob (5.0.7.2)
35
+ activesupport (= 5.0.7.2)
36
+ globalid (>= 0.3.6)
37
+ activemodel (5.0.7.2)
38
+ activesupport (= 5.0.7.2)
39
+ activerecord (5.0.7.2)
40
+ activemodel (= 5.0.7.2)
41
+ activesupport (= 5.0.7.2)
42
+ arel (~> 7.0)
43
+ activesupport (5.0.7.2)
44
+ concurrent-ruby (~> 1.0, >= 1.0.2)
45
+ i18n (>= 0.7, < 2)
46
+ minitest (~> 5.1)
47
+ tzinfo (~> 1.1)
48
+ appraisal (2.3.0)
49
+ bundler
50
+ rake
51
+ thor (>= 0.14.0)
52
+ arel (7.1.4)
53
+ ast (2.4.1)
54
+ builder (3.2.4)
55
+ combustion (1.3.0)
56
+ activesupport (>= 3.0.0)
57
+ railties (>= 3.0.0)
58
+ thor (>= 0.14.6)
59
+ concurrent-ruby (1.1.6)
60
+ crass (1.0.6)
61
+ diff-lcs (1.3)
62
+ erubis (2.7.0)
63
+ globalid (0.4.2)
64
+ activesupport (>= 4.2.0)
65
+ i18n (1.8.3)
66
+ concurrent-ruby (~> 1.0)
67
+ jaro_winkler (1.5.4)
68
+ loofah (2.6.0)
69
+ crass (~> 1.0.2)
70
+ nokogiri (>= 1.5.9)
71
+ mail (2.7.1)
72
+ mini_mime (>= 0.1.1)
73
+ method_source (1.0.0)
74
+ mini_mime (1.0.2)
75
+ mini_portile2 (2.4.0)
76
+ minitest (5.14.1)
77
+ nio4r (2.5.2)
78
+ nokogiri (1.10.9)
79
+ mini_portile2 (~> 2.4.0)
80
+ outbox (0.2.1)
81
+ mail (~> 2.6)
82
+ parallel (1.19.2)
83
+ parser (2.7.1.4)
84
+ ast (~> 2.4.1)
85
+ rack (2.2.3)
86
+ rack-test (0.6.3)
87
+ rack (>= 1.0)
88
+ rails (5.0.7.2)
89
+ actioncable (= 5.0.7.2)
90
+ actionmailer (= 5.0.7.2)
91
+ actionpack (= 5.0.7.2)
92
+ actionview (= 5.0.7.2)
93
+ activejob (= 5.0.7.2)
94
+ activemodel (= 5.0.7.2)
95
+ activerecord (= 5.0.7.2)
96
+ activesupport (= 5.0.7.2)
97
+ bundler (>= 1.3.0)
98
+ railties (= 5.0.7.2)
99
+ sprockets-rails (>= 2.0.0)
100
+ rails-dom-testing (2.0.3)
101
+ activesupport (>= 4.2.0)
102
+ nokogiri (>= 1.6)
103
+ rails-html-sanitizer (1.3.0)
104
+ loofah (~> 2.3)
105
+ railties (5.0.7.2)
106
+ actionpack (= 5.0.7.2)
107
+ activesupport (= 5.0.7.2)
108
+ method_source
109
+ rake (>= 0.8.7)
110
+ thor (>= 0.18.1, < 2.0)
111
+ rainbow (3.0.0)
112
+ rake (13.0.1)
113
+ rexml (3.2.4)
114
+ rspec (3.5.0)
115
+ rspec-core (~> 3.5.0)
116
+ rspec-expectations (~> 3.5.0)
117
+ rspec-mocks (~> 3.5.0)
118
+ rspec-core (3.5.4)
119
+ rspec-support (~> 3.5.0)
120
+ rspec-expectations (3.5.0)
121
+ diff-lcs (>= 1.2.0, < 2.0)
122
+ rspec-support (~> 3.5.0)
123
+ rspec-mocks (3.5.0)
124
+ diff-lcs (>= 1.2.0, < 2.0)
125
+ rspec-support (~> 3.5.0)
126
+ rspec-rails (3.5.2)
127
+ actionpack (>= 3.0)
128
+ activesupport (>= 3.0)
129
+ railties (>= 3.0)
130
+ rspec-core (~> 3.5.0)
131
+ rspec-expectations (~> 3.5.0)
132
+ rspec-mocks (~> 3.5.0)
133
+ rspec-support (~> 3.5.0)
134
+ rspec-support (3.5.0)
135
+ rubocop (0.82.0)
136
+ jaro_winkler (~> 1.5.1)
137
+ parallel (~> 1.10)
138
+ parser (>= 2.7.0.1)
139
+ rainbow (>= 2.2.2, < 4.0)
140
+ rexml
141
+ ruby-progressbar (~> 1.7)
142
+ unicode-display_width (>= 1.4.0, < 2.0)
143
+ ruby-progressbar (1.10.1)
144
+ sprockets (4.0.2)
145
+ concurrent-ruby (~> 1.0)
146
+ rack (> 1, < 3)
147
+ sprockets-rails (3.2.1)
148
+ actionpack (>= 4.0)
149
+ activesupport (>= 4.0)
150
+ sprockets (>= 3.0.0)
151
+ sqlite3 (1.4.2)
152
+ thor (1.0.1)
153
+ thread_safe (0.3.6)
154
+ tzinfo (1.2.7)
155
+ thread_safe (~> 0.1)
156
+ unicode-display_width (1.7.0)
157
+ websocket-driver (0.6.5)
158
+ websocket-extensions (>= 0.1.0)
159
+ websocket-extensions (0.1.5)
160
+
161
+ PLATFORMS
162
+ ruby
163
+
164
+ DEPENDENCIES
165
+ appraisal (~> 2.3.0)
166
+ combustion (~> 1.1)
167
+ outbox-rails!
168
+ rails (~> 5.0.0)
169
+ rake (>= 12.3.3)
170
+ rspec (~> 3.5.0)
171
+ rspec-rails (~> 3.5.2)
172
+ rubocop (~> 0.82.0)
173
+ sqlite3
174
+
175
+ BUNDLED WITH
176
+ 2.1.4
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~> 5.1.0"
6
+
7
+ gemspec path: "../"
@@ -0,0 +1,176 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ outbox-rails (1.0.0)
5
+ outbox (~> 0.2.0)
6
+ rails (>= 5.0, < 7)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actioncable (5.1.7)
12
+ actionpack (= 5.1.7)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (~> 0.6.1)
15
+ actionmailer (5.1.7)
16
+ actionpack (= 5.1.7)
17
+ actionview (= 5.1.7)
18
+ activejob (= 5.1.7)
19
+ mail (~> 2.5, >= 2.5.4)
20
+ rails-dom-testing (~> 2.0)
21
+ actionpack (5.1.7)
22
+ actionview (= 5.1.7)
23
+ activesupport (= 5.1.7)
24
+ rack (~> 2.0)
25
+ rack-test (>= 0.6.3)
26
+ rails-dom-testing (~> 2.0)
27
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
+ actionview (5.1.7)
29
+ activesupport (= 5.1.7)
30
+ builder (~> 3.1)
31
+ erubi (~> 1.4)
32
+ rails-dom-testing (~> 2.0)
33
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
+ activejob (5.1.7)
35
+ activesupport (= 5.1.7)
36
+ globalid (>= 0.3.6)
37
+ activemodel (5.1.7)
38
+ activesupport (= 5.1.7)
39
+ activerecord (5.1.7)
40
+ activemodel (= 5.1.7)
41
+ activesupport (= 5.1.7)
42
+ arel (~> 8.0)
43
+ activesupport (5.1.7)
44
+ concurrent-ruby (~> 1.0, >= 1.0.2)
45
+ i18n (>= 0.7, < 2)
46
+ minitest (~> 5.1)
47
+ tzinfo (~> 1.1)
48
+ appraisal (2.3.0)
49
+ bundler
50
+ rake
51
+ thor (>= 0.14.0)
52
+ arel (8.0.0)
53
+ ast (2.4.1)
54
+ builder (3.2.4)
55
+ combustion (1.3.0)
56
+ activesupport (>= 3.0.0)
57
+ railties (>= 3.0.0)
58
+ thor (>= 0.14.6)
59
+ concurrent-ruby (1.1.6)
60
+ crass (1.0.6)
61
+ diff-lcs (1.3)
62
+ erubi (1.9.0)
63
+ globalid (0.4.2)
64
+ activesupport (>= 4.2.0)
65
+ i18n (1.8.3)
66
+ concurrent-ruby (~> 1.0)
67
+ jaro_winkler (1.5.4)
68
+ loofah (2.6.0)
69
+ crass (~> 1.0.2)
70
+ nokogiri (>= 1.5.9)
71
+ mail (2.7.1)
72
+ mini_mime (>= 0.1.1)
73
+ method_source (1.0.0)
74
+ mini_mime (1.0.2)
75
+ mini_portile2 (2.4.0)
76
+ minitest (5.14.1)
77
+ nio4r (2.5.2)
78
+ nokogiri (1.10.9)
79
+ mini_portile2 (~> 2.4.0)
80
+ outbox (0.2.1)
81
+ mail (~> 2.6)
82
+ parallel (1.19.2)
83
+ parser (2.7.1.4)
84
+ ast (~> 2.4.1)
85
+ rack (2.2.3)
86
+ rack-test (1.1.0)
87
+ rack (>= 1.0, < 3)
88
+ rails (5.1.7)
89
+ actioncable (= 5.1.7)
90
+ actionmailer (= 5.1.7)
91
+ actionpack (= 5.1.7)
92
+ actionview (= 5.1.7)
93
+ activejob (= 5.1.7)
94
+ activemodel (= 5.1.7)
95
+ activerecord (= 5.1.7)
96
+ activesupport (= 5.1.7)
97
+ bundler (>= 1.3.0)
98
+ railties (= 5.1.7)
99
+ sprockets-rails (>= 2.0.0)
100
+ rails-dom-testing (2.0.3)
101
+ activesupport (>= 4.2.0)
102
+ nokogiri (>= 1.6)
103
+ rails-html-sanitizer (1.3.0)
104
+ loofah (~> 2.3)
105
+ railties (5.1.7)
106
+ actionpack (= 5.1.7)
107
+ activesupport (= 5.1.7)
108
+ method_source
109
+ rake (>= 0.8.7)
110
+ thor (>= 0.18.1, < 2.0)
111
+ rainbow (3.0.0)
112
+ rake (13.0.1)
113
+ rexml (3.2.4)
114
+ rspec (3.5.0)
115
+ rspec-core (~> 3.5.0)
116
+ rspec-expectations (~> 3.5.0)
117
+ rspec-mocks (~> 3.5.0)
118
+ rspec-core (3.5.4)
119
+ rspec-support (~> 3.5.0)
120
+ rspec-expectations (3.5.0)
121
+ diff-lcs (>= 1.2.0, < 2.0)
122
+ rspec-support (~> 3.5.0)
123
+ rspec-mocks (3.5.0)
124
+ diff-lcs (>= 1.2.0, < 2.0)
125
+ rspec-support (~> 3.5.0)
126
+ rspec-rails (3.5.2)
127
+ actionpack (>= 3.0)
128
+ activesupport (>= 3.0)
129
+ railties (>= 3.0)
130
+ rspec-core (~> 3.5.0)
131
+ rspec-expectations (~> 3.5.0)
132
+ rspec-mocks (~> 3.5.0)
133
+ rspec-support (~> 3.5.0)
134
+ rspec-support (3.5.0)
135
+ rubocop (0.82.0)
136
+ jaro_winkler (~> 1.5.1)
137
+ parallel (~> 1.10)
138
+ parser (>= 2.7.0.1)
139
+ rainbow (>= 2.2.2, < 4.0)
140
+ rexml
141
+ ruby-progressbar (~> 1.7)
142
+ unicode-display_width (>= 1.4.0, < 2.0)
143
+ ruby-progressbar (1.10.1)
144
+ sprockets (4.0.2)
145
+ concurrent-ruby (~> 1.0)
146
+ rack (> 1, < 3)
147
+ sprockets-rails (3.2.1)
148
+ actionpack (>= 4.0)
149
+ activesupport (>= 4.0)
150
+ sprockets (>= 3.0.0)
151
+ sqlite3 (1.4.2)
152
+ thor (1.0.1)
153
+ thread_safe (0.3.6)
154
+ tzinfo (1.2.7)
155
+ thread_safe (~> 0.1)
156
+ unicode-display_width (1.7.0)
157
+ websocket-driver (0.6.5)
158
+ websocket-extensions (>= 0.1.0)
159
+ websocket-extensions (0.1.5)
160
+
161
+ PLATFORMS
162
+ ruby
163
+
164
+ DEPENDENCIES
165
+ appraisal (~> 2.3.0)
166
+ combustion (~> 1.1)
167
+ outbox-rails!
168
+ rails (~> 5.1.0)
169
+ rake (>= 12.3.3)
170
+ rspec (~> 3.5.0)
171
+ rspec-rails (~> 3.5.2)
172
+ rubocop (~> 0.82.0)
173
+ sqlite3
174
+
175
+ BUNDLED WITH
176
+ 2.1.4