h2ocube_rails_assets 0.0.23 → 0.0.24
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/.gitignore +1 -0
- data/README.md +2 -0
- data/Vendorfile +26 -7
- data/h2ocube_rails_assets.gemspec +1 -1
- data/vendor/assets/images/semantic/icons.eot +0 -0
- data/vendor/assets/images/semantic/icons.svg +450 -0
- data/vendor/assets/images/semantic/icons.ttf +0 -0
- data/vendor/assets/images/semantic/icons.woff +0 -0
- data/vendor/assets/images/semantic/loader-large-inverted.gif +0 -0
- data/vendor/assets/images/semantic/loader-large.gif +0 -0
- data/vendor/assets/images/semantic/loader-medium-inverted.gif +0 -0
- data/vendor/assets/images/semantic/loader-medium.gif +0 -0
- data/vendor/assets/images/semantic/loader-mini-inverted.gif +0 -0
- data/vendor/assets/images/semantic/loader-mini.gif +0 -0
- data/vendor/assets/images/semantic/loader-small-inverted.gif +0 -0
- data/vendor/assets/images/semantic/loader-small.gif +0 -0
- data/vendor/assets/javascripts/highcharts.js +274 -271
- data/vendor/assets/javascripts/jquery.cookie.js +29 -17
- data/vendor/assets/javascripts/jquery.lazyload.js +2 -2
- data/vendor/assets/javascripts/jquery.turbolinks.coffee +12 -4
- data/vendor/assets/javascripts/semantic.js +15 -0
- data/vendor/assets/javascripts/underscore.js +2 -2
- data/vendor/assets/stylesheets/semantic.scss +14 -0
- metadata +16 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0858598adafc7857c6887e654af1796c6fca23d2
|
4
|
+
data.tar.gz: be43d4610e0bd27fc8beb999680daaf11117f0b9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0db802c3e66584d1e10f44bf148e0447c2344ac778a5e431918326490cda47690f926e23ee86d60db903bb22388b7bedc65e0b119e804712608ce60b17efab41
|
7
|
+
data.tar.gz: de86cbab0d5b7cd9e85831d92d8177d2f9e6f2a1dbc3fbde53e90d30c7a1918574609a395e5ab5ae86b54a1672a24adbc84660a4bff33e623edf08725ebf1189
|
data/.gitignore
CHANGED
data/README.md
CHANGED
@@ -44,6 +44,7 @@ Or install it yourself as:
|
|
44
44
|
#=require backbone
|
45
45
|
#=require turbolinks
|
46
46
|
#=require jquery.turbolinks
|
47
|
+
#=require semantic
|
47
48
|
|
48
49
|
@import compass
|
49
50
|
@import jquery.ui
|
@@ -55,6 +56,7 @@ Or install it yourself as:
|
|
55
56
|
@import bootstrap3
|
56
57
|
@import normalize
|
57
58
|
@import jasny-bootstrap
|
59
|
+
@import semantic
|
58
60
|
|
59
61
|
## Contributing
|
60
62
|
|
data/Vendorfile
CHANGED
@@ -18,14 +18,33 @@ def get_zip to, url
|
|
18
18
|
end
|
19
19
|
end
|
20
20
|
|
21
|
-
def cp_img to, from
|
21
|
+
def cp_img to, from, clear = true
|
22
22
|
FileUtils.mkdir_p to
|
23
|
-
FileUtils.rm Dir.glob("#{to}/*")
|
23
|
+
FileUtils.rm Dir.glob("#{to}/*") if clear
|
24
24
|
Dir["#{from}/*"].select{ |f| /\.(eot|svg|ttf|woff|gif|png|jpe?g)$/ =~ f }.each do |f|
|
25
25
|
FileUtils.cp f, "#{to}/#{File.basename f}"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
|
29
|
+
# semantic-ui
|
30
|
+
get_zip "#{vendor_tmp}semantic", 'http://semantic-ui.com/release/semantic.zip'
|
31
|
+
FileUtils.cp "#{vendor_tmp}semantic/packaged/css/semantic.min.css", "#{vendor_css}semantic.scss"
|
32
|
+
FileUtils.cp "#{vendor_tmp}semantic/packaged/javascript/semantic.min.js", "#{vendor_js}semantic.js"
|
33
|
+
cp_img "#{vendor_img}semantic", "#{vendor_tmp}semantic/packaged/images"
|
34
|
+
cp_img "#{vendor_img}semantic", "#{vendor_tmp}semantic/packaged/fonts", false
|
35
|
+
|
36
|
+
body = File.read("#{vendor_css}semantic.scss").gsub(/url\([^\)]+\)/){ |s|
|
37
|
+
filename = s.gsub(/url\(..\/(images|fonts)\//, '').gsub(')', '')
|
38
|
+
"image-url(\"semantic/#{filename}\")"
|
39
|
+
}
|
40
|
+
|
41
|
+
File.open("#{vendor_css}semantic.scss", 'w') do |f|
|
42
|
+
f.write body
|
43
|
+
end
|
44
|
+
|
45
|
+
FileUtils.rm "#{vendor_tmp}semantic.zip"
|
46
|
+
FileUtils.remove_dir "#{vendor_tmp}semantic"
|
47
|
+
|
29
48
|
# jquery
|
30
49
|
get "#{vendor_js}jquery/1.8.js", 'http://code.jquery.com/jquery-1.8.3.min.js'
|
31
50
|
get "#{vendor_js}jquery/1.9.js", 'http://code.jquery.com/jquery-1.9.1.min.js'
|
@@ -145,10 +164,10 @@ FileUtils.remove_dir "#{vendor_tmp}bootstrap"
|
|
145
164
|
|
146
165
|
# bootstrap3
|
147
166
|
version = '3.0.0'
|
148
|
-
get_zip "#{vendor_tmp}bootstrap", "https://github.com/twbs/bootstrap/
|
167
|
+
get_zip "#{vendor_tmp}bootstrap", "https://github.com/twbs/bootstrap/archive/v#{version}.zip"
|
149
168
|
|
150
|
-
FileUtils.cp "#{vendor_tmp}bootstrap/dist/js/bootstrap.min.js", "#{vendor_js}bootstrap3.js"
|
151
|
-
FileUtils.cp "#{vendor_tmp}bootstrap/dist/css/bootstrap.min.css", "#{vendor_css}bootstrap3.scss"
|
169
|
+
FileUtils.cp "#{vendor_tmp}bootstrap/bootstrap-#{version}/dist/js/bootstrap.min.js", "#{vendor_js}bootstrap3.js"
|
170
|
+
FileUtils.cp "#{vendor_tmp}bootstrap/bootstrap-#{version}/dist/css/bootstrap.min.css", "#{vendor_css}bootstrap3.scss"
|
152
171
|
|
153
172
|
body = File.read("#{vendor_css}bootstrap3.scss").gsub(/url\([^\)]+\)/){ |s|
|
154
173
|
filename = s.gsub("url('../fonts/", '').gsub("')", '')
|
@@ -159,11 +178,11 @@ File.open("#{vendor_css}bootstrap3.scss", 'w') do |f|
|
|
159
178
|
f.write body
|
160
179
|
end
|
161
180
|
|
162
|
-
cp_img "#{vendor_img}bootstrap3", "#{vendor_tmp}bootstrap/dist/fonts"
|
181
|
+
cp_img "#{vendor_img}bootstrap3", "#{vendor_tmp}bootstrap/bootstrap-#{version}/dist/fonts"
|
163
182
|
|
164
183
|
FileUtils.rm "#{vendor_tmp}bootstrap.zip"
|
165
184
|
FileUtils.remove_dir "#{vendor_tmp}bootstrap"
|
166
|
-
|
185
|
+
|
167
186
|
# underscore
|
168
187
|
get "#{vendor_js}underscore.js", 'http://underscorejs.org/underscore-min.js'
|
169
188
|
|
@@ -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.24'
|
8
8
|
gem.authors = ['Ben']
|
9
9
|
gem.email = ['ben@h2ocube.com']
|
10
10
|
gem.description = %q{Just an assets collection}
|
Binary file
|