blaze_rails 0.1.2.pre.beta3 → 0.1.2.pre.beta3.1
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/README.md +1 -1
- data/lib/blaze_rails/engine.rb +3 -3
- data/lib/blaze_rails/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8d436ae3c925e3aae5784d83b5897641a5077d70
|
|
4
|
+
data.tar.gz: cf8f9691834e21bbd13ce4159e9dd85058ab01d5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b4aa0a1e56aa9f508afd8952be960df14c5a2cda88200fbc99c4697a249de14a9eda34c446671f135f2ccd2247f7ceefb614c6d783ba7d716b665e91bac37bcf
|
|
7
|
+
data.tar.gz: d0222b899376265b81855201c594117f03a27d078cc2b9c410a1b86b16fa0e8f84967e85174871495beaf678919217f6d95f1cc5546c133c2e71cec6181a51d7
|
data/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# BlazeRails
|
|
2
2
|
[](https://badge.fury.io/rb/blaze_rails)
|
|
3
3
|
|
|
4
|
-
####VERSION - 0.1.2
|
|
4
|
+
####VERSION - 0.1.2-beta3
|
|
5
5
|
|
|
6
6
|
Rails Gem for [Blaze-css](http://blazecss.com/)
|
|
7
7
|
**NOTE: This gem is not tested and still in development process.**
|
data/lib/blaze_rails/engine.rb
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
module
|
|
1
|
+
module Blaze
|
|
2
2
|
module Rails
|
|
3
3
|
class Engine < ::Rails::Engine
|
|
4
|
-
initializer 'blaze_rails
|
|
4
|
+
initializer 'blaze_rails.assests.precompile' do |app|
|
|
5
5
|
%w(stylesheets).each do |sub|
|
|
6
6
|
app.config.assets.paths << root.join('assets', sub).to_s
|
|
7
7
|
end
|
|
8
8
|
|
|
9
9
|
unless Sprockets::Rails::VERSION.split('.', 2)[0].to_i >= 3
|
|
10
|
-
app.config.assets.precompile
|
|
10
|
+
app.config.assets.precompile
|
|
11
11
|
end
|
|
12
12
|
end
|
|
13
13
|
end
|
data/lib/blaze_rails/version.rb
CHANGED