h2ocube_rails_assets 0.0.1 → 0.0.2
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.
- data/README.md +4 -0
- data/h2ocube_rails_assets.gemspec +2 -2
- data/lib/h2ocube_rails_assets.rb +1 -1
- data/vendor/assets/images/jquery.fancybox/blank.gif +0 -0
- data/vendor/assets/images/jquery.fancybox/fancybox_loading.gif +0 -0
- data/vendor/assets/images/jquery.fancybox/fancybox_overlay.png +0 -0
- data/vendor/assets/images/jquery.fancybox/fancybox_sprite.png +0 -0
- data/vendor/assets/javascripts/jquery.fancybox.js +1985 -0
- data/vendor/assets/stylesheets/jquery.fancybox.scss +249 -0
- metadata +31 -3
data/README.md
CHANGED
@@ -26,13 +26,17 @@ Or install it yourself as:
|
|
26
26
|
#=require jquery.validate
|
27
27
|
#=require jquery.fileupload
|
28
28
|
#=require jquery.pnotify
|
29
|
+
#=require jquery.fancybox
|
29
30
|
#=require bootstrap
|
30
31
|
#=require underscore
|
31
32
|
#=require sammy
|
32
33
|
|
34
|
+
@import compass
|
35
|
+
@import susy
|
33
36
|
@import jquery.ui
|
34
37
|
@import jquery.mobile
|
35
38
|
@import jquery.pnotify
|
39
|
+
@import jquery.fancybox
|
36
40
|
@import bootstrap
|
37
41
|
@import bootstrap.responsive
|
38
42
|
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |gem|
|
6
6
|
gem.name = 'h2ocube_rails_assets'
|
7
|
-
gem.version = '0.0.
|
7
|
+
gem.version = '0.0.2'
|
8
8
|
gem.authors = ['Ben']
|
9
9
|
gem.email = ['ben@h2ocube.com']
|
10
10
|
gem.description = %q{Just an assets collection}
|
@@ -16,5 +16,5 @@ Gem::Specification.new do |gem|
|
|
16
16
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
17
17
|
gem.require_paths = ["lib"]
|
18
18
|
|
19
|
-
['slim', 'sass-rails', 'compass', 'coffee-rails', 'therubyracer', 'uglifier', 'quiet_assets'].each{ |g| gem.add_dependency g }
|
19
|
+
['slim', 'sass-rails', 'compass-rails', 'susy', 'coffee-rails', 'therubyracer', 'uglifier', 'quiet_assets'].each{ |g| gem.add_dependency g }
|
20
20
|
end
|
data/lib/h2ocube_rails_assets.rb
CHANGED
Binary file
|
Binary file
|
Binary file
|
Binary file
|