combustion 1.1.1 → 1.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Appraisals +1 -1
- data/Gemfile +6 -0
- data/HISTORY +3 -0
- data/README.md +2 -2
- data/combustion.gemspec +1 -1
- data/lib/combustion/generator.rb +4 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3eb6d2a6b0969112f3503bab5f3b9c4847118d4a7e109651cf1ac616de7d419b
|
4
|
+
data.tar.gz: 3d8ae68beb0394aec13846aafa2f20b4c195403e07a727106a61a1098ce3cc99
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e814d51e52656bc048850758136196e8f93bcb164e131773cf5d36c291a5568482550e1c9899d263d5d0a21e5f73cd523537db4114598f753885a275542623fe
|
7
|
+
data.tar.gz: c16a93e9c6130109c94a7b0324f4350eb96f6041512f419fac6666b0816ed11b1431c68efa20df803c0193ed820b8dd849f46bff767843f2d27fb8abc256e03b
|
data/Appraisals
CHANGED
data/Gemfile
CHANGED
data/HISTORY
CHANGED
data/README.md
CHANGED
@@ -150,7 +150,7 @@ Combustion.initialize! :all do
|
|
150
150
|
end
|
151
151
|
```
|
152
152
|
|
153
|
-
Values given through the initialize! block will be set during Rails initialization
|
153
|
+
Values given through the initialize! block will be set during Rails initialization process, exactly before the corresponding environment file inside `spec/internals/config/enviroments` is loaded (when that file exists), overriding Combustion's defaults.
|
154
154
|
|
155
155
|
Parameters defined in, for instance, `spec/internals/config/environments/test.rb`, would override Combustion's defaults and also config settings passed to initialize!.
|
156
156
|
|
@@ -185,7 +185,7 @@ end
|
|
185
185
|
|
186
186
|
## Compatibility
|
187
187
|
|
188
|
-
The current test matrix covers MRI 2.2 to 2.
|
188
|
+
The current test matrix covers MRI 2.2 to 2.6, and Rails 3.1 to 6.0. It will possibly work on older versions and other Ruby implementations as well.
|
189
189
|
|
190
190
|
You can also use Combustion with multiple versions of Rails to test compatibility across them. [Appraisal](https://github.com/thoughtbot/appraisal) is a gem that can help with this, and a good starting reference is the [Thinking Sphinx](https://github.com/pat/thinking-sphinx) test suite, which runs against [multiple versions](https://github.com/pat/thinking-sphinx/blob/master/Appraisals) of Rails.
|
191
191
|
|
data/combustion.gemspec
CHANGED
data/lib/combustion/generator.rb
CHANGED
@@ -23,8 +23,10 @@ module Combustion
|
|
23
23
|
template "templates/database.yml", "spec/internal/config/database.yml"
|
24
24
|
template "templates/schema.rb", "spec/internal/db/schema.rb"
|
25
25
|
template "templates/config.ru", "config.ru"
|
26
|
-
|
27
|
-
create_file
|
26
|
+
|
27
|
+
create_file "spec/internal/app/assets/config/manifest.js"
|
28
|
+
create_file "spec/internal/public/favicon.ico"
|
29
|
+
create_file "spec/internal/log/.gitignore" do
|
28
30
|
"*.log"
|
29
31
|
end
|
30
32
|
end
|
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.1.
|
4
|
+
version: 1.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pat Allan
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-11-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|