konacha 3.2.2 → 3.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +1 -0
- data/Gemfile +1 -0
- data/Gemfile-rails40 +6 -0
- data/History.md +4 -0
- data/konacha.gemspec +1 -1
- data/lib/konacha/engine.rb +1 -0
- data/spec/dummy/config/environments/development.rb +5 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f1afb8df0992f3b70332b4d70dec0e010aeeb419
|
|
4
|
+
data.tar.gz: 1274256f717c45d44da37716998f82777260ae0c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f391e5374c6106275cc3f13effd9572a9916dd01193e106f6f4a5f7a7a411dd1244831f85975c7ae96b7c9f8ec94d4fda26f7b9a317d2b3be5479303ad18442b
|
|
7
|
+
data.tar.gz: 2ec43e22ce158e9cbbc4ebffb48b1902d85643c24e78e991eef111c850bed72b033d13b4e25ba38934dca4f0ed26858f35cb83edfead36b55c878cdf75d8c361
|
data/.travis.yml
CHANGED
data/Gemfile
CHANGED
data/Gemfile-rails40
ADDED
data/History.md
CHANGED
data/konacha.gemspec
CHANGED
|
@@ -17,7 +17,7 @@ the asset pipeline and engines.}
|
|
|
17
17
|
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
18
18
|
gem.name = "konacha"
|
|
19
19
|
gem.require_paths = ["lib"]
|
|
20
|
-
gem.version = "3.2.
|
|
20
|
+
gem.version = "3.2.3"
|
|
21
21
|
gem.license = "MIT"
|
|
22
22
|
|
|
23
23
|
gem.add_dependency "railties", ">= 3.1", "< 5"
|
data/lib/konacha/engine.rb
CHANGED
|
@@ -24,4 +24,9 @@ Dummy::Application.configure do
|
|
|
24
24
|
|
|
25
25
|
# Expands the lines which load the assets
|
|
26
26
|
config.assets.debug = true
|
|
27
|
+
|
|
28
|
+
# Adds additional error checking when serving assets at runtime.
|
|
29
|
+
# Checks for improperly declared sprockets dependencies.
|
|
30
|
+
# Raises helpful error messages.
|
|
31
|
+
config.assets.raise_runtime_errors = true
|
|
27
32
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: konacha
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.2.
|
|
4
|
+
version: 3.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- John Firebaugh
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-05-
|
|
11
|
+
date: 2014-05-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: railties
|
|
@@ -223,6 +223,7 @@ files:
|
|
|
223
223
|
- .travis.yml
|
|
224
224
|
- Gemfile
|
|
225
225
|
- Gemfile-rails3
|
|
226
|
+
- Gemfile-rails40
|
|
226
227
|
- History.md
|
|
227
228
|
- LICENSE
|
|
228
229
|
- README.md
|