combustion 1.2.0 → 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/HISTORY +3 -0
- data/README.md +1 -1
- data/combustion.gemspec +1 -1
- data/lib/combustion.rb +5 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 54c7aefc5588e22af4d8d45e43d53b1237cd9dfe1e2b0e957b8ba57c7247f8b0
|
4
|
+
data.tar.gz: e363d219c62d8c039eba2485ad3cfd5622e9eea2ffe3e2ba0fe96a12fd0271aa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 92db9e787d20abe7b10034368b49313911a9eb0e028319033e771a8048c5c901dd6618ee2973782ba9f1d748a41709990d94542358d1ab1dd1d6917ecd4ae2d8
|
7
|
+
data.tar.gz: 7a55c366dd3773ea8775628297afc9a0fa870e8fbff31079820a72e253edb7bfd2e16f6648167dfcc6f19f199d4a4ddc2309454ed4ece88486241fafc53e3805
|
data/HISTORY
CHANGED
data/README.md
CHANGED
@@ -10,7 +10,7 @@ Get the gem into either your gemspec or your Gemfile, depending on how you manag
|
|
10
10
|
|
11
11
|
```ruby
|
12
12
|
# gemspec
|
13
|
-
gem.add_development_dependency 'combustion', '~> 1.
|
13
|
+
gem.add_development_dependency 'combustion', '~> 1.3'
|
14
14
|
|
15
15
|
# Gemfile
|
16
16
|
gem 'combustion', '~> 1.2'
|
data/combustion.gemspec
CHANGED
data/lib/combustion.rb
CHANGED
@@ -22,7 +22,11 @@ module Combustion
|
|
22
22
|
}
|
23
23
|
|
24
24
|
hash[:sprockets] = "sprockets/railtie" if Rails.version.to_f >= 3.1
|
25
|
+
hash[:active_job] = "active_job/railtie" if Rails.version.to_f >= 4.2
|
26
|
+
hash[:action_cable] = "action_cable/engine" if Rails.version.to_f >= 5.0
|
25
27
|
hash[:active_storage] = "active_storage/engine" if Rails.version.to_f >= 5.2
|
28
|
+
hash[:action_text] = "action_text/engine" if Rails.version.to_f >= 6.0
|
29
|
+
hash[:action_mailbox] = "action_mailbox/engine" if Rails.version.to_f >= 6.0
|
26
30
|
|
27
31
|
hash
|
28
32
|
end.freeze
|
@@ -32,7 +36,7 @@ module Combustion
|
|
32
36
|
|
33
37
|
options = modules.extract_options!
|
34
38
|
modules = MODULES.keys if modules == [:all]
|
35
|
-
modules.each { |mod| require MODULES
|
39
|
+
modules.each { |mod| require MODULES.fetch(mod, "#{mod}/railtie") }
|
36
40
|
|
37
41
|
Bundler.require :default, Rails.env
|
38
42
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: combustion
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pat Allan
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-04-
|
11
|
+
date: 2020-04-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -224,7 +224,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
224
224
|
- !ruby/object:Gem::Version
|
225
225
|
version: '0'
|
226
226
|
requirements: []
|
227
|
-
rubygems_version: 3.
|
227
|
+
rubygems_version: 3.0.3
|
228
228
|
signing_key:
|
229
229
|
specification_version: 4
|
230
230
|
summary: Elegant Rails Engine Testing
|