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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d75fdd951c2753bc78da33f55e44da984f70f8ef688c09f350d672d4dd5cd6bc
4
- data.tar.gz: 94a09faad89e5c0f14b2e696862cf9a13d72c06cf645287303bdcd3758c7a42e
3
+ metadata.gz: 54c7aefc5588e22af4d8d45e43d53b1237cd9dfe1e2b0e957b8ba57c7247f8b0
4
+ data.tar.gz: e363d219c62d8c039eba2485ad3cfd5622e9eea2ffe3e2ba0fe96a12fd0271aa
5
5
  SHA512:
6
- metadata.gz: 27ab0c66fbf63e48f67acf75af81b29dda40bd8307633675097fc344521d52dbcbcc6e93695315272a5b9023c948743cff78f6f134084a2fc49e4565e2307a8c
7
- data.tar.gz: 435840a9905a72fd0883499400a7b4abecb288c3d1d4c5f66da9a4280a4a440159e2634089a76de7c47dab2edd4a16152a1f4adb4c2716789d1b6b2385456157
6
+ metadata.gz: 92db9e787d20abe7b10034368b49313911a9eb0e028319033e771a8048c5c901dd6618ee2973782ba9f1d748a41709990d94542358d1ab1dd1d6917ecd4ae2d8
7
+ data.tar.gz: 7a55c366dd3773ea8775628297afc9a0fa870e8fbff31079820a72e253edb7bfd2e16f6648167dfcc6f19f199d4a4ddc2309454ed4ece88486241fafc53e3805
data/HISTORY CHANGED
@@ -1,3 +1,6 @@
1
+ 1.3.0 - April 20th 2020
2
+ * Support ActiveJob, ActionCable, ActionText, ActionMailbox.
3
+
1
4
  1.2.0 - April 18th 2020
2
5
  * Support ActiveStorage (Mikko Kokkonen).
3
6
 
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.2'
13
+ gem.add_development_dependency 'combustion', '~> 1.3'
14
14
 
15
15
  # Gemfile
16
16
  gem 'combustion', '~> 1.2'
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "combustion"
5
- s.version = "1.2.0"
5
+ s.version = "1.3.0"
6
6
  s.authors = ["Pat Allan"]
7
7
  s.email = ["pat@freelancing-gods.com"]
8
8
  s.homepage = "https://github.com/pat/combustion"
@@ -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[mod] }
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.2.0
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-18 00:00:00.000000000 Z
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.1.2
227
+ rubygems_version: 3.0.3
228
228
  signing_key:
229
229
  specification_version: 4
230
230
  summary: Elegant Rails Engine Testing