guard_boilerplate 0.1.0 → 0.1.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/CHANGELOG.md +4 -0
- data/README.md +3 -3
- data/lib/version.rb +1 -1
- data/templates/Guardfile +1 -0
- metadata +5 -5
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -10,7 +10,7 @@ Impatient? Have Ruby installed and understand what a gem is? Use the Boilerplate
|
|
|
10
10
|
2. Install guard_boilerplate and start a new project:
|
|
11
11
|
gem install guard_boilerplate
|
|
12
12
|
mkdir my_site && cd my_site
|
|
13
|
-
curl -L 'https://github.com/paulirish/html5-boilerplate/tarball/
|
|
13
|
+
curl -L 'https://github.com/paulirish/html5-boilerplate/tarball/master' | tar -xzf - --strip-components 1
|
|
14
14
|
gbp hamlize && gbp sassify
|
|
15
15
|
gbp start
|
|
16
16
|
3. Hit the LiveReload **LR** button in your browser
|
|
@@ -61,11 +61,11 @@ Change directory into your new web-wonder project directory, and start the liste
|
|
|
61
61
|
cd my_site
|
|
62
62
|
gbp start
|
|
63
63
|
|
|
64
|
-
Using the
|
|
64
|
+
Using the badass [HTML5 Boilerplate](http://html5boilerplate.com/) as your base? I thought
|
|
65
65
|
so. Try this one out, my Mac and Linux pals:
|
|
66
66
|
|
|
67
67
|
mkdir my_site && cd my_site
|
|
68
|
-
curl -L 'https://github.com/paulirish/html5-boilerplate/tarball/
|
|
68
|
+
curl -L 'https://github.com/paulirish/html5-boilerplate/tarball/master' | tar -xzf - --strip-components 1
|
|
69
69
|
gbp start
|
|
70
70
|
|
|
71
71
|
LiveReload needs to refresh an `http://` URL (rather than a `file://`), so an embedded HTTP server will fire up by default on port 3000 thanks to the [WEBrick guard](https://github.com/fnichol/guard-webrick).
|
data/lib/version.rb
CHANGED
data/templates/Guardfile
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: guard_boilerplate
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 25
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.1.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Fletcher Nichol
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-
|
|
18
|
+
date: 2011-05-17 00:00:00 -06:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -197,7 +197,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
197
197
|
requirements: []
|
|
198
198
|
|
|
199
199
|
rubyforge_project: guard_boilerplate
|
|
200
|
-
rubygems_version: 1.
|
|
200
|
+
rubygems_version: 1.5.2
|
|
201
201
|
signing_key:
|
|
202
202
|
specification_version: 3
|
|
203
203
|
summary: A simple script that allows you to run Guard to refresh your web browser and optionally recompile Sass/Haml files
|