appmake 0.1.25 → 0.1.26
Sign up to get free protection for your applications and to get access to all the features.
@@ -8,7 +8,7 @@ module Appmake
|
|
8
8
|
def self.install
|
9
9
|
shell = Color.new
|
10
10
|
|
11
|
-
shell.say_status :install "Backbone", :green
|
11
|
+
shell.say_status :install, "Backbone", :green
|
12
12
|
shell.say_status :cmd, "curl http://backbonejs.org/backbonejs-min.js -o public/backbone.min.js", :blue
|
13
13
|
system("curl -silent http://backbonejs.org/backbone-min.js -o public/backbone.min.js")
|
14
14
|
end
|
@@ -8,7 +8,7 @@ module Appmake
|
|
8
8
|
def self.install
|
9
9
|
shell = Color.new
|
10
10
|
|
11
|
-
shell.say_status :install "Bootstrap", :green
|
11
|
+
shell.say_status :install, "Bootstrap", :green
|
12
12
|
shell.say_status :cmd, "curl http://twitter.github.com/bootstrap/assets/bootstrap.zip -o public/bootstrap.zip", :blue
|
13
13
|
shell.say_status :cmd, "cd public", :blue
|
14
14
|
shell.say_status :cmd, "unzip bootstrap.zip &> /dev/null", :blue
|
@@ -8,7 +8,7 @@ module Appmake
|
|
8
8
|
def self.install
|
9
9
|
shell = Color.new
|
10
10
|
|
11
|
-
shell.say_status :install "jQuery", :green
|
11
|
+
shell.say_status :install, "jQuery", :green
|
12
12
|
shell.say_status :cmd, "curl http://code.jquery.com/jquery-1.9.0.min.js -o public/jquery-1.9.0.min.js", :blue
|
13
13
|
system("curl -silent http://code.jquery.com/jquery-1.9.0.min.js -o public/jquery-1.9.0.min.js")
|
14
14
|
end
|
@@ -8,7 +8,7 @@ module Appmake
|
|
8
8
|
def self.install
|
9
9
|
shell = Color.new
|
10
10
|
|
11
|
-
shell.say_status :install "Underscore", :green
|
11
|
+
shell.say_status :install, "Underscore", :green
|
12
12
|
shell.say_status :cmd, "curl http://underscorejs.org/underscore-min.js -o public/underscore.min.js", :blue
|
13
13
|
system("curl -silent http://underscorejs.org/underscore-min.js -o public/underscore.min.js")
|
14
14
|
end
|
data/lib/appmake/version.rb
CHANGED