jquery-ioslist-rails 0.2.0 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +2 -0
- data/lib/jquery/ioslist/rails/engine.rb +12 -0
- data/lib/jquery/ioslist/rails/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 75c63c6d6038fbc769c3edb712c5c1420d59a17f
|
4
|
+
data.tar.gz: 9e79696f0a732ff9331dc25b6d226499a74e5e14
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 79edd4496fe0ae5ed2513feec7bd56ea2014d7ee595eeff03561fb6aacf6f3d8e59233d6fcf1de1910867730c83355891804b763ab9092ea68cd283f58f620a0
|
7
|
+
data.tar.gz: d2937ffc689364ec4fa14a640aa34d17ed80e489963622b2b70a2ae1cfe6051345ac7c06a16bf6f7211dc167599ce6aac89ac4357b165cdfbbf95786eed1f1c8
|
@@ -0,0 +1,12 @@
|
|
1
|
+
module Jquery
|
2
|
+
module Ioslist
|
3
|
+
module Rails
|
4
|
+
class Engine < ::Rails::Engine
|
5
|
+
initializer 'Precompile hook', :group => :all do |app|
|
6
|
+
app.config.assets.precompile += ['jquery.isolist.js']
|
7
|
+
app.config.assets.precompile += ['jquery.isolist.css']
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jquery-ioslist-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kirill
|
@@ -72,6 +72,7 @@ files:
|
|
72
72
|
- jquery-ioslist-rails-0.1.0.gem
|
73
73
|
- jquery-ioslist-rails.gemspec
|
74
74
|
- lib/jquery/ioslist/rails.rb
|
75
|
+
- lib/jquery/ioslist/rails/engine.rb
|
75
76
|
- lib/jquery/ioslist/rails/version.rb
|
76
77
|
- vendor/assets/javascripts/jquery.ioslist.js
|
77
78
|
- vendor/assets/stylesheets/jquery.isolist.css
|