nimbu 0.8.0 → 0.8.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/lib/nimbu/command/themes.rb +3 -3
- data/lib/nimbu/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 286ea890b648d427d6f1dcaf0ba56b6b8bce4f0f
|
4
|
+
data.tar.gz: 1f6589038fa7c7ed6ec9d481fe4fb04a775ef1de
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b94023c5347a5223d94c1b2f7d4909826aa1a810ec94fafed1844698cc1a5ef2b4435aa919ff0856b2b5bfd3fb43971c17a335d53660da724ef71b9d80a0d2ec
|
7
|
+
data.tar.gz: 3743d9c8652ba8a189be511ae82f0c6199f587a2af79ed3db7295612402e67931a452a140191448f0958cf2338e28f20750a24dfc51ca3e9a813718d56f5813a
|
data/lib/nimbu/command/themes.rb
CHANGED
@@ -117,7 +117,7 @@ class Nimbu::Command::Themes < Nimbu::Command::Base
|
|
117
117
|
|
118
118
|
if push_fonts
|
119
119
|
if files_only
|
120
|
-
font_files = args.select{|file| file.start_with?("fonts"
|
120
|
+
font_files = args.select{|file| file.start_with?("fonts")}.map{|file| file.gsub("fonts/", "")}
|
121
121
|
else
|
122
122
|
font_files = Dir.glob("#{Dir.pwd}/fonts/**/*").map {|dir| dir.gsub("#{Dir.pwd}/fonts/","")} rescue []
|
123
123
|
end
|
@@ -135,7 +135,7 @@ class Nimbu::Command::Themes < Nimbu::Command::Base
|
|
135
135
|
|
136
136
|
if push_images
|
137
137
|
if files_only
|
138
|
-
image_files = args.select{|file| file.start_with?("images"
|
138
|
+
image_files = args.select{|file| file.start_with?("images")}.map{|file| file.gsub("images/", "")}
|
139
139
|
else
|
140
140
|
image_files = Dir.glob("#{Dir.pwd}/images/**/*").map {|dir| dir.gsub("#{Dir.pwd}/images/","")}
|
141
141
|
end
|
@@ -171,7 +171,7 @@ class Nimbu::Command::Themes < Nimbu::Command::Base
|
|
171
171
|
|
172
172
|
if push_js
|
173
173
|
if files_only
|
174
|
-
js_files = args.select{|file| file.start_with?("javascripts"
|
174
|
+
js_files = args.select{|file| file.start_with?("javascripts")}.map{|file| file.gsub("javascripts/", "")}
|
175
175
|
else
|
176
176
|
js_files = js_glob.map {|dir| dir.gsub("#{Dir.pwd}/javascripts/","")}
|
177
177
|
end
|
data/lib/nimbu/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nimbu
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Zenjoy BVBA
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-09-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: term-ansicolor
|
@@ -311,7 +311,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
311
311
|
version: '0'
|
312
312
|
requirements: []
|
313
313
|
rubyforge_project:
|
314
|
-
rubygems_version: 2.4.
|
314
|
+
rubygems_version: 2.4.5
|
315
315
|
signing_key:
|
316
316
|
specification_version: 4
|
317
317
|
summary: Client library and CLI to design websites on the Nimbu platform.
|