appmake 0.2.0 → 0.2.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.
- data/lib/appmake/version.rb +1 -1
- data/lib/appmake.rb +2 -2
- metadata +1 -1
data/lib/appmake/version.rb
CHANGED
data/lib/appmake.rb
CHANGED
@@ -141,13 +141,13 @@ module Appmake
|
|
141
141
|
elsif name == "backbone"
|
142
142
|
empty_directory "public"
|
143
143
|
empty_directory "public/js"
|
144
|
-
run "curl
|
144
|
+
run "curl http://backbonejs.org/backbone-min.js -o public/js/backbone.min.js"
|
145
145
|
elsif name == "bootstrap"
|
146
146
|
empty_directory "public"
|
147
147
|
empty_directory "public/css"
|
148
148
|
empty_directory "public/img"
|
149
149
|
empty_directory "public/js"
|
150
|
-
run "curl
|
150
|
+
run "curl http://twitter.github.com/bootstrap/assets/bootstrap.zip -o public/bootstrap.zip"
|
151
151
|
run "unzip public/bootstrap.zip -d public"
|
152
152
|
run "mv public/bootstrap/js/bootstrap.min.js public/js/"
|
153
153
|
run "mv public/bootstrap/css/bootstrap.min.css public/css/"
|