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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d5388d9872369f3155c6faccf635b31da438adea2db7706ae25340fbead4952f
4
- data.tar.gz: 340fdd914f33877e7e4c31ada8522ca05087fad4c35cc913d527074c97ee9e9b
3
+ metadata.gz: 3eb6d2a6b0969112f3503bab5f3b9c4847118d4a7e109651cf1ac616de7d419b
4
+ data.tar.gz: 3d8ae68beb0394aec13846aafa2f20b4c195403e07a727106a61a1098ce3cc99
5
5
  SHA512:
6
- metadata.gz: 584dca0d90d73ce0c831344412d137e60abcf53ba1d7f74e6dda0035ab4330bcb9d3dadc3baba1722112a2eeb0cb0af27c6ac12a3e7d52917ec2a8942f68af1b
7
- data.tar.gz: 8e55af24b6097887de3c3ea7f5aa92112d11e3cc829bd38812a7e8872daa2022e9bb9fb55c55035a9f25a2e225f49ba9d8d318641d8afb14e9a24291b22eb305
6
+ metadata.gz: e814d51e52656bc048850758136196e8f93bcb164e131773cf5d36c291a5568482550e1c9899d263d5d0a21e5f73cd523537db4114598f753885a275542623fe
7
+ data.tar.gz: c16a93e9c6130109c94a7b0324f4350eb96f6041512f419fac6666b0816ed11b1431c68efa20df803c0193ed820b8dd849f46bff767843f2d27fb8abc256e03b
data/Appraisals CHANGED
@@ -56,7 +56,7 @@ end
56
56
 
57
57
  if RUBY_VERSION.to_f >= 2.5
58
58
  appraise "rails-6.0" do
59
- gem "rails", "~> 6.0.0.rc1"
59
+ gem "rails", "~> 6.0.0"
60
60
  gem "mysql2", "~> 0.5.0"
61
61
  gem "sqlite3", "~> 1.4"
62
62
  end
data/Gemfile CHANGED
@@ -5,3 +5,9 @@ source "http://rubygems.org"
5
5
  gemspec
6
6
 
7
7
  gem "sqlite3", "~> 1.3.13"
8
+
9
+ if RUBY_VERSION.to_f < 2.3
10
+ gem "i18n", "< 1.6"
11
+ gem "nio4r", "< 2.4"
12
+ gem "nokogiri", "< 1.10.3"
13
+ end
data/HISTORY CHANGED
@@ -1,3 +1,6 @@
1
+ 1.1.2 - November 4th 2019
2
+ * Generate an empty asset manifest file for Rails 6.
3
+
1
4
  1.1.1 - August 3rd 2019
2
5
  * Fix for latest Rails 6.0 release candidate.
3
6
  * Test suite updates (Rails edge, sqlite3, Rubocop)
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 proccess, exactly before the corresponding environment file inside `spec/internals/config/enviroments` is loaded (when that file exists), overriding Combustion's defaults.
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.4, and Rails 3.1 to 5.0. It will possibly work on older versions and other Ruby implementations as well.
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
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "combustion"
5
- s.version = "1.1.1"
5
+ s.version = "1.1.2"
6
6
  s.authors = ["Pat Allan"]
7
7
  s.email = ["pat@freelancing-gods.com"]
8
8
  s.homepage = "https://github.com/pat/combustion"
@@ -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
- create_file "spec/internal/public/favicon.ico"
27
- create_file "spec/internal/log/.gitignore" do
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.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-08-03 00:00:00.000000000 Z
11
+ date: 2019-11-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport