high_five 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/high_five.gemspec +4 -1
- data/lib/high_five/deploy_task.rb +0 -2
- data/lib/high_five/version.rb +1 -1
- metadata +6 -3
data/high_five.gemspec
CHANGED
@@ -10,7 +10,10 @@ Gem::Specification.new do |s|
|
|
10
10
|
s.email = ["brian@tenforwardconsulting.com"]
|
11
11
|
s.homepage = "http://github.com/tenforwardconsulting/high_five"
|
12
12
|
s.summary = %q{HighFive is a set of build scripts and tools for packing HTML5 apps both for the web and for phonegap}
|
13
|
-
s.description = %q{
|
13
|
+
s.description = %q{Build, minify, and deal with different platforms and environments for your HTML5 app.
|
14
|
+
This is often used with PhoneGap but designed not to require it, and high_five can be used to deploy any kind of HTML/JS/CSS-based
|
15
|
+
application that requires different deployment configurations.
|
16
|
+
}
|
14
17
|
|
15
18
|
s.add_runtime_dependency "thor", "~>0.17.0"
|
16
19
|
s.add_runtime_dependency "compass", "~>0.12.2"
|
@@ -90,7 +90,6 @@ module HighFive
|
|
90
90
|
end
|
91
91
|
|
92
92
|
@stylesheets = []
|
93
|
-
p "SASS = #{config.sass_files}"
|
94
93
|
config.sass_files.each do |sass_file|
|
95
94
|
asset_name = File.basename(sass_file, File.extname(sass_file))
|
96
95
|
css_file = File.join(self.destination_root, "stylesheets", "#{asset_name}.css")
|
@@ -157,7 +156,6 @@ module HighFive
|
|
157
156
|
builder.append_path "."
|
158
157
|
builder.append_path base_config.root
|
159
158
|
|
160
|
-
p builder.paths
|
161
159
|
builder
|
162
160
|
end
|
163
161
|
|
data/lib/high_five/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: high_five
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
12
|
+
date: 2013-04-02 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: thor
|
@@ -91,7 +91,10 @@ dependencies:
|
|
91
91
|
- - ~>
|
92
92
|
- !ruby/object:Gem::Version
|
93
93
|
version: 2.13.0
|
94
|
-
description:
|
94
|
+
description: ! "Build, minify, and deal with different platforms and environments
|
95
|
+
for your HTML5 app. \n This is often used with PhoneGap but designed not to
|
96
|
+
require it, and high_five can be used to deploy any kind of HTML/JS/CSS-based\n
|
97
|
+
\ application that requires different deployment configurations.\n "
|
95
98
|
email:
|
96
99
|
- brian@tenforwardconsulting.com
|
97
100
|
executables:
|