db_mailer_rails 0.1.1 → 0.1.2

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: 03dc18f69a23caf9959707f6b0bbe7d79f066eb3
4
- data.tar.gz: 93aa34843235c9d53dde544304513069592dc6a2
2
+ SHA256:
3
+ metadata.gz: 306d0b4ff1313b814c1936c46f71d434798ce6f3af979c761706ecc211a48f96
4
+ data.tar.gz: 14835ec43452db2823e14a9c907fce3fa158b2cc09e558cf248f5eed3020885f
5
5
  SHA512:
6
- metadata.gz: 320322843f0e5beb1a4510f6fd89db72efb7598bc7560736044791b42693e516445dd5e0e816e50e71513b282b1d8a929c5b4f499900df88f3469479ff16b32d
7
- data.tar.gz: b197fb08aec98e72b2c45e8933334bd38e056e07a40a385dd322492a6d7bc93a60835c08121d6fb91e83b4cb6f89efefca1d94c87f9e77511297b33f0eacd192
6
+ metadata.gz: 7d4ce5cf8ddb9be3e0c7d2577eb7a4d74964d4ca83d476d29c11ddc07452ba37072b004cedbafb8cba77d84a5e6ab372e01c033796a942c6f34c36ad470c10c1
7
+ data.tar.gz: 48b1ea2839d4443f17705bc597222ee35fdc1b2366550ea73103a7be9eb762c06d56930b3295e9765c3414daa1176ce3fb02fe982d7f529f39fc21f04d99605c
data/.travis.yml CHANGED
@@ -1,31 +1,29 @@
1
1
  language: ruby
2
2
 
3
3
  rvm:
4
- - 2.1.10
5
- - 2.2.8
6
- - 2.3.5
7
4
  - 2.4.2
8
5
  - 2.5.0
9
- - ruby-head
6
+ - 2.6.5
10
7
 
11
8
  gemfile:
12
9
  - Gemfile
13
10
  - gemfiles/Gemfile.rails-4.1-stable
14
11
  - gemfiles/Gemfile.rails-4.2-stable
15
12
  - gemfiles/Gemfile.rails-5.0-stable
13
+ - gemfiles/Gemfile.rails-5.1-stable
16
14
 
17
15
  matrix:
18
16
  exclude:
19
- - rvm: 2.1.10
17
+ - rvm: 2.4.2
20
18
  gemfile: Gemfile
21
- - rvm: 2.1.10
22
- gemfile: gemfiles/Gemfile.rails-5.0-stable
23
19
  - rvm: 2.4.2
24
20
  gemfile: gemfiles/Gemfile.rails-4.1-stable
25
21
  - rvm: 2.5.0
26
22
  gemfile: gemfiles/Gemfile.rails-4.1-stable
27
- - rvm: ruby-head
23
+ - rvm: 2.6.5
28
24
  gemfile: gemfiles/Gemfile.rails-4.1-stable
25
+ - rvm: 2.6.5
26
+ gemfile: gemfiles/Gemfile.rails-4.2-stable
29
27
  allow_failures:
30
28
  - rvm: ruby-head
31
29
 
@@ -33,6 +31,8 @@ sudo: false
33
31
 
34
32
  before_install:
35
33
  - "rm ${BUNDLE_GEMFILE}.lock"
36
- - gem update --system
34
+ - gem update --system '2.7.8' --no-document
35
+ - gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
36
+ - gem install bundler -v '< 2' --no-document
37
37
 
38
38
  before_script: 'bundle update'
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ### 0.1.2 - 2020-04-22
2
+
3
+ * enhancements
4
+ * Added support for Rails 6.0.x.
5
+
1
6
  ### 0.1.1 - 2018-01-12
2
7
 
3
8
  * enhancements
data/Gemfile CHANGED
@@ -2,7 +2,7 @@ source 'https://rubygems.org'
2
2
 
3
3
  gemspec
4
4
 
5
- gem 'rails', '~> 5.1'
5
+ gem 'rails', '~> 6.0.2'
6
6
 
7
7
  group :development do
8
8
  gem 'listen', '~> 3.0'
@@ -14,6 +14,6 @@ end
14
14
 
15
15
  group :test do
16
16
  gem 'database_cleaner', '~> 1.6'
17
- gem 'shoulda-matchers', '~> 3.1'
17
+ gem 'shoulda-matchers', '~> 4.3'
18
18
  gem 'generator_spec', '~> 0.9'
19
19
  end
data/Gemfile.lock CHANGED
@@ -1,147 +1,169 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- db_mailer_rails (0.1.1)
5
- actionmailer (>= 4.1, < 5.2)
6
- actionpack (>= 4.1, < 5.2)
7
- mustache (~> 1.0)
8
- railties (>= 4.1, < 5.2)
4
+ db_mailer_rails (0.1.2)
5
+ actionmailer (>= 4.2, <= 6.0.2.2)
6
+ actionpack (>= 4.2, <= 6.0.2.2)
7
+ mustache (~> 1.1)
8
+ railties (>= 4.2, <= 6.0.2.2)
9
9
 
10
10
  GEM
11
11
  remote: https://rubygems.org/
12
12
  specs:
13
- actioncable (5.1.4)
14
- actionpack (= 5.1.4)
13
+ actioncable (6.0.2.2)
14
+ actionpack (= 6.0.2.2)
15
15
  nio4r (~> 2.0)
16
- websocket-driver (~> 0.6.1)
17
- actionmailer (5.1.4)
18
- actionpack (= 5.1.4)
19
- actionview (= 5.1.4)
20
- activejob (= 5.1.4)
16
+ websocket-driver (>= 0.6.1)
17
+ actionmailbox (6.0.2.2)
18
+ actionpack (= 6.0.2.2)
19
+ activejob (= 6.0.2.2)
20
+ activerecord (= 6.0.2.2)
21
+ activestorage (= 6.0.2.2)
22
+ activesupport (= 6.0.2.2)
23
+ mail (>= 2.7.1)
24
+ actionmailer (6.0.2.2)
25
+ actionpack (= 6.0.2.2)
26
+ actionview (= 6.0.2.2)
27
+ activejob (= 6.0.2.2)
21
28
  mail (~> 2.5, >= 2.5.4)
22
29
  rails-dom-testing (~> 2.0)
23
- actionpack (5.1.4)
24
- actionview (= 5.1.4)
25
- activesupport (= 5.1.4)
26
- rack (~> 2.0)
30
+ actionpack (6.0.2.2)
31
+ actionview (= 6.0.2.2)
32
+ activesupport (= 6.0.2.2)
33
+ rack (~> 2.0, >= 2.0.8)
27
34
  rack-test (>= 0.6.3)
28
35
  rails-dom-testing (~> 2.0)
29
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
30
- actionview (5.1.4)
31
- activesupport (= 5.1.4)
36
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
37
+ actiontext (6.0.2.2)
38
+ actionpack (= 6.0.2.2)
39
+ activerecord (= 6.0.2.2)
40
+ activestorage (= 6.0.2.2)
41
+ activesupport (= 6.0.2.2)
42
+ nokogiri (>= 1.8.5)
43
+ actionview (6.0.2.2)
44
+ activesupport (= 6.0.2.2)
32
45
  builder (~> 3.1)
33
46
  erubi (~> 1.4)
34
47
  rails-dom-testing (~> 2.0)
35
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
36
- activejob (5.1.4)
37
- activesupport (= 5.1.4)
48
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
49
+ activejob (6.0.2.2)
50
+ activesupport (= 6.0.2.2)
38
51
  globalid (>= 0.3.6)
39
- activemodel (5.1.4)
40
- activesupport (= 5.1.4)
41
- activerecord (5.1.4)
42
- activemodel (= 5.1.4)
43
- activesupport (= 5.1.4)
44
- arel (~> 8.0)
45
- activesupport (5.1.4)
52
+ activemodel (6.0.2.2)
53
+ activesupport (= 6.0.2.2)
54
+ activerecord (6.0.2.2)
55
+ activemodel (= 6.0.2.2)
56
+ activesupport (= 6.0.2.2)
57
+ activestorage (6.0.2.2)
58
+ actionpack (= 6.0.2.2)
59
+ activejob (= 6.0.2.2)
60
+ activerecord (= 6.0.2.2)
61
+ marcel (~> 0.3.1)
62
+ activesupport (6.0.2.2)
46
63
  concurrent-ruby (~> 1.0, >= 1.0.2)
47
- i18n (~> 0.7)
64
+ i18n (>= 0.7, < 2)
48
65
  minitest (~> 5.1)
49
66
  tzinfo (~> 1.1)
50
- arel (8.0.0)
51
- builder (3.2.3)
52
- concurrent-ruby (1.0.5)
53
- crass (1.0.3)
54
- database_cleaner (1.6.2)
67
+ zeitwerk (~> 2.2)
68
+ builder (3.2.4)
69
+ concurrent-ruby (1.1.6)
70
+ crass (1.0.6)
71
+ database_cleaner (1.8.4)
55
72
  diff-lcs (1.3)
56
- erubi (1.7.0)
57
- factory_bot (4.8.2)
73
+ erubi (1.9.0)
74
+ factory_bot (4.11.1)
58
75
  activesupport (>= 3.0.0)
59
- ffi (1.9.18)
76
+ ffi (1.12.2)
60
77
  generator_spec (0.9.4)
61
78
  activesupport (>= 3.0.0)
62
79
  railties (>= 3.0.0)
63
- globalid (0.4.1)
80
+ globalid (0.4.2)
64
81
  activesupport (>= 4.2.0)
65
- i18n (0.9.1)
82
+ i18n (1.8.2)
66
83
  concurrent-ruby (~> 1.0)
67
- listen (3.1.5)
68
- rb-fsevent (~> 0.9, >= 0.9.4)
69
- rb-inotify (~> 0.9, >= 0.9.7)
70
- ruby_dep (~> 1.2)
71
- loofah (2.1.1)
84
+ listen (3.2.1)
85
+ rb-fsevent (~> 0.10, >= 0.10.3)
86
+ rb-inotify (~> 0.9, >= 0.9.10)
87
+ loofah (2.5.0)
72
88
  crass (~> 1.0.2)
73
89
  nokogiri (>= 1.5.9)
74
- mail (2.7.0)
90
+ mail (2.7.1)
75
91
  mini_mime (>= 0.1.1)
76
- method_source (0.9.0)
77
- mini_mime (1.0.0)
78
- mini_portile2 (2.3.0)
79
- minitest (5.10.3)
80
- mustache (1.0.5)
81
- nio4r (2.2.0)
82
- nokogiri (1.8.1)
83
- mini_portile2 (~> 2.3.0)
84
- rack (2.0.3)
85
- rack-test (0.8.2)
92
+ marcel (0.3.3)
93
+ mimemagic (~> 0.3.2)
94
+ method_source (1.0.0)
95
+ mimemagic (0.3.4)
96
+ mini_mime (1.0.2)
97
+ mini_portile2 (2.4.0)
98
+ minitest (5.14.0)
99
+ mustache (1.1.1)
100
+ nio4r (2.5.2)
101
+ nokogiri (1.10.9)
102
+ mini_portile2 (~> 2.4.0)
103
+ rack (2.2.2)
104
+ rack-test (1.1.0)
86
105
  rack (>= 1.0, < 3)
87
- rails (5.1.4)
88
- actioncable (= 5.1.4)
89
- actionmailer (= 5.1.4)
90
- actionpack (= 5.1.4)
91
- actionview (= 5.1.4)
92
- activejob (= 5.1.4)
93
- activemodel (= 5.1.4)
94
- activerecord (= 5.1.4)
95
- activesupport (= 5.1.4)
106
+ rails (6.0.2.2)
107
+ actioncable (= 6.0.2.2)
108
+ actionmailbox (= 6.0.2.2)
109
+ actionmailer (= 6.0.2.2)
110
+ actionpack (= 6.0.2.2)
111
+ actiontext (= 6.0.2.2)
112
+ actionview (= 6.0.2.2)
113
+ activejob (= 6.0.2.2)
114
+ activemodel (= 6.0.2.2)
115
+ activerecord (= 6.0.2.2)
116
+ activestorage (= 6.0.2.2)
117
+ activesupport (= 6.0.2.2)
96
118
  bundler (>= 1.3.0)
97
- railties (= 5.1.4)
119
+ railties (= 6.0.2.2)
98
120
  sprockets-rails (>= 2.0.0)
99
121
  rails-dom-testing (2.0.3)
100
122
  activesupport (>= 4.2.0)
101
123
  nokogiri (>= 1.6)
102
- rails-html-sanitizer (1.0.3)
103
- loofah (~> 2.0)
104
- railties (5.1.4)
105
- actionpack (= 5.1.4)
106
- activesupport (= 5.1.4)
124
+ rails-html-sanitizer (1.3.0)
125
+ loofah (~> 2.3)
126
+ railties (6.0.2.2)
127
+ actionpack (= 6.0.2.2)
128
+ activesupport (= 6.0.2.2)
107
129
  method_source
108
130
  rake (>= 0.8.7)
109
- thor (>= 0.18.1, < 2.0)
110
- rake (12.3.0)
111
- rb-fsevent (0.10.2)
112
- rb-inotify (0.9.10)
113
- ffi (>= 0.5.0, < 2)
114
- rspec (3.7.0)
115
- rspec-core (~> 3.7.0)
116
- rspec-expectations (~> 3.7.0)
117
- rspec-mocks (~> 3.7.0)
118
- rspec-core (3.7.0)
119
- rspec-support (~> 3.7.0)
120
- rspec-expectations (3.7.0)
131
+ thor (>= 0.20.3, < 2.0)
132
+ rake (13.0.1)
133
+ rb-fsevent (0.10.3)
134
+ rb-inotify (0.10.1)
135
+ ffi (~> 1.0)
136
+ rspec (3.9.0)
137
+ rspec-core (~> 3.9.0)
138
+ rspec-expectations (~> 3.9.0)
139
+ rspec-mocks (~> 3.9.0)
140
+ rspec-core (3.9.1)
141
+ rspec-support (~> 3.9.1)
142
+ rspec-expectations (3.9.1)
121
143
  diff-lcs (>= 1.2.0, < 2.0)
122
- rspec-support (~> 3.7.0)
123
- rspec-mocks (3.7.0)
144
+ rspec-support (~> 3.9.0)
145
+ rspec-mocks (3.9.1)
124
146
  diff-lcs (>= 1.2.0, < 2.0)
125
- rspec-support (~> 3.7.0)
126
- rspec-support (3.7.0)
127
- ruby_dep (1.5.0)
128
- shoulda-matchers (3.1.2)
129
- activesupport (>= 4.0.0)
130
- sprockets (3.7.1)
147
+ rspec-support (~> 3.9.0)
148
+ rspec-support (3.9.2)
149
+ shoulda-matchers (4.3.0)
150
+ activesupport (>= 4.2.0)
151
+ sprockets (4.0.0)
131
152
  concurrent-ruby (~> 1.0)
132
153
  rack (> 1, < 3)
133
154
  sprockets-rails (3.2.1)
134
155
  actionpack (>= 4.0)
135
156
  activesupport (>= 4.0)
136
157
  sprockets (>= 3.0.0)
137
- sqlite3 (1.3.13)
138
- thor (0.20.0)
158
+ sqlite3 (1.4.2)
159
+ thor (1.0.1)
139
160
  thread_safe (0.3.6)
140
- tzinfo (1.2.4)
161
+ tzinfo (1.2.7)
141
162
  thread_safe (~> 0.1)
142
- websocket-driver (0.6.5)
163
+ websocket-driver (0.7.1)
143
164
  websocket-extensions (>= 0.1.0)
144
- websocket-extensions (0.1.3)
165
+ websocket-extensions (0.1.4)
166
+ zeitwerk (2.3.0)
145
167
 
146
168
  PLATFORMS
147
169
  ruby
@@ -152,10 +174,10 @@ DEPENDENCIES
152
174
  factory_bot (~> 4.0)
153
175
  generator_spec (~> 0.9)
154
176
  listen (~> 3.0)
155
- rails (~> 5.1)
156
- rspec (~> 3.0)
157
- shoulda-matchers (~> 3.1)
158
- sqlite3 (~> 1.3.0)
177
+ rails (~> 6.0.2)
178
+ rspec (~> 3.9.0)
179
+ shoulda-matchers (~> 4.3)
180
+ sqlite3 (>= 1.3.13, <= 1.4.2)
159
181
 
160
182
  BUNDLED WITH
161
- 1.16.0
183
+ 2.1.4
@@ -9,7 +9,7 @@ Gem::Specification.new do |s|
9
9
  s.authors = 'Alexey Degtyarev'
10
10
  s.email = 'alexhifer@gmail.com'
11
11
 
12
- s.required_ruby_version = '>= 2.1.0'
12
+ s.required_ruby_version = '>= 2.4.2'
13
13
  s.summary = %q{Store mail templates in the database.}
14
14
  s.description = %q{This gem allows you to store mail templates in the database.}
15
15
  s.license = 'MIT'
@@ -21,10 +21,10 @@ s.authors = 'Alexey Degtyarev'
21
21
  s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
22
22
  s.require_paths = ['lib']
23
23
 
24
- s.add_dependency 'actionpack', ['>= 4.1', '< 5.2']
25
- s.add_dependency 'actionmailer', ['>= 4.1', '< 5.2']
26
- s.add_dependency 'railties', ['>= 4.1', '< 5.2']
27
- s.add_dependency 'mustache', '~> 1.0'
28
- s.add_development_dependency 'rspec', '~> 3.0'
29
- s.add_development_dependency 'sqlite3', '~> 1.3.0'
24
+ s.add_dependency 'actionpack', ['>= 4.2', '<= 6.0.2.2']
25
+ s.add_dependency 'actionmailer', ['>= 4.2', '<= 6.0.2.2']
26
+ s.add_dependency 'railties', ['>= 4.2', '<= 6.0.2.2']
27
+ s.add_dependency 'mustache', '~> 1.1'
28
+ s.add_development_dependency 'rspec', '~> 3.9.0'
29
+ s.add_development_dependency 'sqlite3', ['>= 1.3.13', '<= 1.4.2']
30
30
  end
@@ -16,4 +16,5 @@ group :test do
16
16
  gem 'database_cleaner', '~> 1.6'
17
17
  gem 'shoulda-matchers', '~> 3.1'
18
18
  gem 'generator_spec', '~> 0.9'
19
+ gem 'sqlite3', '= 1.3.13'
19
20
  end
@@ -157,4 +157,4 @@ DEPENDENCIES
157
157
  sqlite3 (~> 1.3.0)
158
158
 
159
159
  BUNDLED WITH
160
- 1.16.0
160
+ 1.17.3
@@ -16,4 +16,5 @@ group :test do
16
16
  gem 'database_cleaner', '~> 1.6'
17
17
  gem 'shoulda-matchers', '~> 3.1'
18
18
  gem 'generator_spec', '~> 0.9'
19
+ gem 'sqlite3', '= 1.3.13'
19
20
  end
@@ -158,4 +158,4 @@ DEPENDENCIES
158
158
  sqlite3 (~> 1.3.0)
159
159
 
160
160
  BUNDLED WITH
161
- 1.16.0
161
+ 1.17.3
@@ -2,7 +2,7 @@ source 'https://rubygems.org'
2
2
 
3
3
  gemspec path: '..'
4
4
 
5
- gem 'rails', github: "rails/rails", branch: "4-1-stable"
5
+ gem 'rails', '~> 5.1'
6
6
 
7
7
  group :development do
8
8
  gem 'listen', '~> 3.0'
@@ -14,6 +14,7 @@ end
14
14
 
15
15
  group :test do
16
16
  gem 'database_cleaner', '~> 1.6'
17
- gem 'shoulda-matchers', '~> 3.1'
17
+ gem 'shoulda-matchers', '~> 4.3'
18
18
  gem 'generator_spec', '~> 0.9'
19
+ gem 'sqlite3', '= 1.3.13'
19
20
  end
@@ -0,0 +1,161 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ db_mailer_rails (0.1.1)
5
+ actionmailer (>= 4.1, < 5.2)
6
+ actionpack (>= 4.1, < 5.2)
7
+ mustache (~> 1.0)
8
+ railties (>= 4.1, < 5.2)
9
+
10
+ GEM
11
+ remote: https://rubygems.org/
12
+ specs:
13
+ actioncable (5.1.4)
14
+ actionpack (= 5.1.4)
15
+ nio4r (~> 2.0)
16
+ websocket-driver (~> 0.6.1)
17
+ actionmailer (5.1.4)
18
+ actionpack (= 5.1.4)
19
+ actionview (= 5.1.4)
20
+ activejob (= 5.1.4)
21
+ mail (~> 2.5, >= 2.5.4)
22
+ rails-dom-testing (~> 2.0)
23
+ actionpack (5.1.4)
24
+ actionview (= 5.1.4)
25
+ activesupport (= 5.1.4)
26
+ rack (~> 2.0)
27
+ rack-test (>= 0.6.3)
28
+ rails-dom-testing (~> 2.0)
29
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
30
+ actionview (5.1.4)
31
+ activesupport (= 5.1.4)
32
+ builder (~> 3.1)
33
+ erubi (~> 1.4)
34
+ rails-dom-testing (~> 2.0)
35
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
36
+ activejob (5.1.4)
37
+ activesupport (= 5.1.4)
38
+ globalid (>= 0.3.6)
39
+ activemodel (5.1.4)
40
+ activesupport (= 5.1.4)
41
+ activerecord (5.1.4)
42
+ activemodel (= 5.1.4)
43
+ activesupport (= 5.1.4)
44
+ arel (~> 8.0)
45
+ activesupport (5.1.4)
46
+ concurrent-ruby (~> 1.0, >= 1.0.2)
47
+ i18n (~> 0.7)
48
+ minitest (~> 5.1)
49
+ tzinfo (~> 1.1)
50
+ arel (8.0.0)
51
+ builder (3.2.3)
52
+ concurrent-ruby (1.0.5)
53
+ crass (1.0.3)
54
+ database_cleaner (1.6.2)
55
+ diff-lcs (1.3)
56
+ erubi (1.7.0)
57
+ factory_bot (4.8.2)
58
+ activesupport (>= 3.0.0)
59
+ ffi (1.9.18)
60
+ generator_spec (0.9.4)
61
+ activesupport (>= 3.0.0)
62
+ railties (>= 3.0.0)
63
+ globalid (0.4.1)
64
+ activesupport (>= 4.2.0)
65
+ i18n (0.9.1)
66
+ concurrent-ruby (~> 1.0)
67
+ listen (3.1.5)
68
+ rb-fsevent (~> 0.9, >= 0.9.4)
69
+ rb-inotify (~> 0.9, >= 0.9.7)
70
+ ruby_dep (~> 1.2)
71
+ loofah (2.1.1)
72
+ crass (~> 1.0.2)
73
+ nokogiri (>= 1.5.9)
74
+ mail (2.7.0)
75
+ mini_mime (>= 0.1.1)
76
+ method_source (0.9.0)
77
+ mini_mime (1.0.0)
78
+ mini_portile2 (2.3.0)
79
+ minitest (5.10.3)
80
+ mustache (1.0.5)
81
+ nio4r (2.2.0)
82
+ nokogiri (1.8.1)
83
+ mini_portile2 (~> 2.3.0)
84
+ rack (2.0.3)
85
+ rack-test (0.8.2)
86
+ rack (>= 1.0, < 3)
87
+ rails (5.1.4)
88
+ actioncable (= 5.1.4)
89
+ actionmailer (= 5.1.4)
90
+ actionpack (= 5.1.4)
91
+ actionview (= 5.1.4)
92
+ activejob (= 5.1.4)
93
+ activemodel (= 5.1.4)
94
+ activerecord (= 5.1.4)
95
+ activesupport (= 5.1.4)
96
+ bundler (>= 1.3.0)
97
+ railties (= 5.1.4)
98
+ sprockets-rails (>= 2.0.0)
99
+ rails-dom-testing (2.0.3)
100
+ activesupport (>= 4.2.0)
101
+ nokogiri (>= 1.6)
102
+ rails-html-sanitizer (1.0.3)
103
+ loofah (~> 2.0)
104
+ railties (5.1.4)
105
+ actionpack (= 5.1.4)
106
+ activesupport (= 5.1.4)
107
+ method_source
108
+ rake (>= 0.8.7)
109
+ thor (>= 0.18.1, < 2.0)
110
+ rake (12.3.0)
111
+ rb-fsevent (0.10.2)
112
+ rb-inotify (0.9.10)
113
+ ffi (>= 0.5.0, < 2)
114
+ rspec (3.7.0)
115
+ rspec-core (~> 3.7.0)
116
+ rspec-expectations (~> 3.7.0)
117
+ rspec-mocks (~> 3.7.0)
118
+ rspec-core (3.7.0)
119
+ rspec-support (~> 3.7.0)
120
+ rspec-expectations (3.7.0)
121
+ diff-lcs (>= 1.2.0, < 2.0)
122
+ rspec-support (~> 3.7.0)
123
+ rspec-mocks (3.7.0)
124
+ diff-lcs (>= 1.2.0, < 2.0)
125
+ rspec-support (~> 3.7.0)
126
+ rspec-support (3.7.0)
127
+ ruby_dep (1.5.0)
128
+ shoulda-matchers (4.3.0)
129
+ activesupport (>= 4.2.0)
130
+ sprockets (3.7.1)
131
+ concurrent-ruby (~> 1.0)
132
+ rack (> 1, < 3)
133
+ sprockets-rails (3.2.1)
134
+ actionpack (>= 4.0)
135
+ activesupport (>= 4.0)
136
+ sprockets (>= 3.0.0)
137
+ sqlite3 (1.3.13)
138
+ thor (0.20.0)
139
+ thread_safe (0.3.6)
140
+ tzinfo (1.2.4)
141
+ thread_safe (~> 0.1)
142
+ websocket-driver (0.6.5)
143
+ websocket-extensions (>= 0.1.0)
144
+ websocket-extensions (0.1.3)
145
+
146
+ PLATFORMS
147
+ ruby
148
+
149
+ DEPENDENCIES
150
+ database_cleaner (~> 1.6)
151
+ db_mailer_rails!
152
+ factory_bot (~> 4.0)
153
+ generator_spec (~> 0.9)
154
+ listen (~> 3.0)
155
+ rails (~> 5.1)
156
+ rspec (~> 3.0)
157
+ shoulda-matchers (~> 4.3)
158
+ sqlite3 (~> 1.3.0)
159
+
160
+ BUNDLED WITH
161
+ 2.1.4
@@ -1,3 +1,3 @@
1
1
  module DbMailerRails
2
- VERSION = '0.1.1'.freeze
2
+ VERSION = '0.1.2'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: db_mailer_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexey Degtyarev
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-01-12 00:00:00.000000000 Z
11
+ date: 2020-04-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionpack
@@ -16,102 +16,108 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '4.1'
20
- - - "<"
19
+ version: '4.2'
20
+ - - "<="
21
21
  - !ruby/object:Gem::Version
22
- version: '5.2'
22
+ version: 6.0.2.2
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '4.1'
30
- - - "<"
29
+ version: '4.2'
30
+ - - "<="
31
31
  - !ruby/object:Gem::Version
32
- version: '5.2'
32
+ version: 6.0.2.2
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: actionmailer
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - ">="
38
38
  - !ruby/object:Gem::Version
39
- version: '4.1'
40
- - - "<"
39
+ version: '4.2'
40
+ - - "<="
41
41
  - !ruby/object:Gem::Version
42
- version: '5.2'
42
+ version: 6.0.2.2
43
43
  type: :runtime
44
44
  prerelease: false
45
45
  version_requirements: !ruby/object:Gem::Requirement
46
46
  requirements:
47
47
  - - ">="
48
48
  - !ruby/object:Gem::Version
49
- version: '4.1'
50
- - - "<"
49
+ version: '4.2'
50
+ - - "<="
51
51
  - !ruby/object:Gem::Version
52
- version: '5.2'
52
+ version: 6.0.2.2
53
53
  - !ruby/object:Gem::Dependency
54
54
  name: railties
55
55
  requirement: !ruby/object:Gem::Requirement
56
56
  requirements:
57
57
  - - ">="
58
58
  - !ruby/object:Gem::Version
59
- version: '4.1'
60
- - - "<"
59
+ version: '4.2'
60
+ - - "<="
61
61
  - !ruby/object:Gem::Version
62
- version: '5.2'
62
+ version: 6.0.2.2
63
63
  type: :runtime
64
64
  prerelease: false
65
65
  version_requirements: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
- version: '4.1'
70
- - - "<"
69
+ version: '4.2'
70
+ - - "<="
71
71
  - !ruby/object:Gem::Version
72
- version: '5.2'
72
+ version: 6.0.2.2
73
73
  - !ruby/object:Gem::Dependency
74
74
  name: mustache
75
75
  requirement: !ruby/object:Gem::Requirement
76
76
  requirements:
77
77
  - - "~>"
78
78
  - !ruby/object:Gem::Version
79
- version: '1.0'
79
+ version: '1.1'
80
80
  type: :runtime
81
81
  prerelease: false
82
82
  version_requirements: !ruby/object:Gem::Requirement
83
83
  requirements:
84
84
  - - "~>"
85
85
  - !ruby/object:Gem::Version
86
- version: '1.0'
86
+ version: '1.1'
87
87
  - !ruby/object:Gem::Dependency
88
88
  name: rspec
89
89
  requirement: !ruby/object:Gem::Requirement
90
90
  requirements:
91
91
  - - "~>"
92
92
  - !ruby/object:Gem::Version
93
- version: '3.0'
93
+ version: 3.9.0
94
94
  type: :development
95
95
  prerelease: false
96
96
  version_requirements: !ruby/object:Gem::Requirement
97
97
  requirements:
98
98
  - - "~>"
99
99
  - !ruby/object:Gem::Version
100
- version: '3.0'
100
+ version: 3.9.0
101
101
  - !ruby/object:Gem::Dependency
102
102
  name: sqlite3
103
103
  requirement: !ruby/object:Gem::Requirement
104
104
  requirements:
105
- - - "~>"
105
+ - - ">="
106
+ - !ruby/object:Gem::Version
107
+ version: 1.3.13
108
+ - - "<="
106
109
  - !ruby/object:Gem::Version
107
- version: 1.3.0
110
+ version: 1.4.2
108
111
  type: :development
109
112
  prerelease: false
110
113
  version_requirements: !ruby/object:Gem::Requirement
111
114
  requirements:
112
- - - "~>"
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: 1.3.13
118
+ - - "<="
113
119
  - !ruby/object:Gem::Version
114
- version: 1.3.0
120
+ version: 1.4.2
115
121
  description: This gem allows you to store mail templates in the database.
116
122
  email: alexhifer@gmail.com
117
123
  executables: []
@@ -133,12 +139,12 @@ files:
133
139
  - config/db_mailer_templates.yml
134
140
  - db_mailer_rails.gemspec
135
141
  - db_mailer_rails.png
136
- - gemfiles/Gemfile.rails-4.1-stable
137
- - gemfiles/Gemfile.rails-4.1-stable.lock
138
142
  - gemfiles/Gemfile.rails-4.2-stable
139
143
  - gemfiles/Gemfile.rails-4.2-stable.lock
140
144
  - gemfiles/Gemfile.rails-5.0-stable
141
145
  - gemfiles/Gemfile.rails-5.0-stable.lock
146
+ - gemfiles/Gemfile.rails-5.1-stable
147
+ - gemfiles/Gemfile.rails-5.1-stable.lock
142
148
  - lib/db_mailer_rails.rb
143
149
  - lib/db_mailer_rails/base.rb
144
150
  - lib/db_mailer_rails/helper.rb
@@ -168,15 +174,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
168
174
  requirements:
169
175
  - - ">="
170
176
  - !ruby/object:Gem::Version
171
- version: 2.1.0
177
+ version: 2.4.2
172
178
  required_rubygems_version: !ruby/object:Gem::Requirement
173
179
  requirements:
174
180
  - - ">="
175
181
  - !ruby/object:Gem::Version
176
182
  version: '0'
177
183
  requirements: []
178
- rubyforge_project:
179
- rubygems_version: 2.6.13
184
+ rubygems_version: 3.0.6
180
185
  signing_key:
181
186
  specification_version: 4
182
187
  summary: Store mail templates in the database.
@@ -1,135 +0,0 @@
1
- GIT
2
- remote: git://github.com/rails/rails.git
3
- revision: 0cad778c2605a5204a05a9f1dbd3344e39f248d8
4
- branch: 4-1-stable
5
- specs:
6
- actionmailer (4.1.16)
7
- actionpack (= 4.1.16)
8
- actionview (= 4.1.16)
9
- mail (~> 2.5, >= 2.5.4)
10
- actionpack (4.1.16)
11
- actionview (= 4.1.16)
12
- activesupport (= 4.1.16)
13
- rack (~> 1.5.2)
14
- rack-test (~> 0.6.2)
15
- actionview (4.1.16)
16
- activesupport (= 4.1.16)
17
- builder (~> 3.1)
18
- erubis (~> 2.7.0)
19
- activemodel (4.1.16)
20
- activesupport (= 4.1.16)
21
- builder (~> 3.1)
22
- activerecord (4.1.16)
23
- activemodel (= 4.1.16)
24
- activesupport (= 4.1.16)
25
- arel (~> 5.0.0)
26
- activesupport (4.1.16)
27
- i18n (~> 0.6, >= 0.6.9)
28
- json (~> 1.7, >= 1.7.7)
29
- minitest (~> 5.1)
30
- thread_safe (~> 0.1)
31
- tzinfo (~> 1.1)
32
- rails (4.1.16)
33
- actionmailer (= 4.1.16)
34
- actionpack (= 4.1.16)
35
- actionview (= 4.1.16)
36
- activemodel (= 4.1.16)
37
- activerecord (= 4.1.16)
38
- activesupport (= 4.1.16)
39
- bundler (>= 1.3.0, < 2.0)
40
- railties (= 4.1.16)
41
- sprockets-rails (~> 2.0)
42
- railties (4.1.16)
43
- actionpack (= 4.1.16)
44
- activesupport (= 4.1.16)
45
- rake (>= 0.8.7)
46
- thor (>= 0.18.1, < 2.0)
47
-
48
- PATH
49
- remote: .
50
- specs:
51
- db_mailer_rails (0.1.1)
52
- actionmailer (>= 4.1, < 5.2)
53
- actionpack (>= 4.1, < 5.2)
54
- mustache (~> 1.0)
55
- railties (>= 4.1, < 5.2)
56
-
57
- GEM
58
- remote: https://rubygems.org/
59
- specs:
60
- arel (5.0.1.20140414130214)
61
- builder (3.2.3)
62
- concurrent-ruby (1.0.5)
63
- database_cleaner (1.6.2)
64
- diff-lcs (1.3)
65
- erubis (2.7.0)
66
- factory_bot (4.8.2)
67
- activesupport (>= 3.0.0)
68
- ffi (1.9.18)
69
- generator_spec (0.9.4)
70
- activesupport (>= 3.0.0)
71
- railties (>= 3.0.0)
72
- i18n (0.9.1)
73
- concurrent-ruby (~> 1.0)
74
- json (1.8.6)
75
- listen (3.1.5)
76
- rb-fsevent (~> 0.9, >= 0.9.4)
77
- rb-inotify (~> 0.9, >= 0.9.7)
78
- ruby_dep (~> 1.2)
79
- mail (2.7.0)
80
- mini_mime (>= 0.1.1)
81
- mini_mime (1.0.0)
82
- minitest (5.10.3)
83
- mustache (1.0.5)
84
- rack (1.5.5)
85
- rack-test (0.6.3)
86
- rack (>= 1.0)
87
- rake (12.3.0)
88
- rb-fsevent (0.10.2)
89
- rb-inotify (0.9.10)
90
- ffi (>= 0.5.0, < 2)
91
- rspec (3.7.0)
92
- rspec-core (~> 3.7.0)
93
- rspec-expectations (~> 3.7.0)
94
- rspec-mocks (~> 3.7.0)
95
- rspec-core (3.7.0)
96
- rspec-support (~> 3.7.0)
97
- rspec-expectations (3.7.0)
98
- diff-lcs (>= 1.2.0, < 2.0)
99
- rspec-support (~> 3.7.0)
100
- rspec-mocks (3.7.0)
101
- diff-lcs (>= 1.2.0, < 2.0)
102
- rspec-support (~> 3.7.0)
103
- rspec-support (3.7.0)
104
- ruby_dep (1.5.0)
105
- shoulda-matchers (3.1.2)
106
- activesupport (>= 4.0.0)
107
- sprockets (3.7.1)
108
- concurrent-ruby (~> 1.0)
109
- rack (> 1, < 3)
110
- sprockets-rails (2.3.3)
111
- actionpack (>= 3.0)
112
- activesupport (>= 3.0)
113
- sprockets (>= 2.8, < 4.0)
114
- sqlite3 (1.3.13)
115
- thor (0.20.0)
116
- thread_safe (0.3.6)
117
- tzinfo (1.2.4)
118
- thread_safe (~> 0.1)
119
-
120
- PLATFORMS
121
- ruby
122
-
123
- DEPENDENCIES
124
- database_cleaner (~> 1.6)
125
- db_mailer_rails!
126
- factory_bot (~> 4.0)
127
- generator_spec (~> 0.9)
128
- listen (~> 3.0)
129
- rails!
130
- rspec (~> 3.0)
131
- shoulda-matchers (~> 3.1)
132
- sqlite3 (~> 1.3.0)
133
-
134
- BUNDLED WITH
135
- 1.16.0