guard_boilerplate 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 0.1.1 (May 17, 2011)
2
+
3
+ * Update Guardfile template for better haml response.
4
+
1
5
  # 0.1.0 (Mar 19, 2011)
2
6
 
3
7
  Initial release.
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/v1.0rc' | tar -xzf - --strip-components 1
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 bassass [HTML5 Boilerplate](http://html5boilerplate.com/) as your base? I thought
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/v1.0rc' | tar -xzf - --strip-components 1
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
@@ -1,3 +1,3 @@
1
1
  module GuardBoilerPlate
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
data/templates/Guardfile CHANGED
@@ -16,6 +16,7 @@ end
16
16
 
17
17
  guard 'livereload' do
18
18
  watch(%r{.+\.(html|htm)})
19
+ watch(%r{haml/.+\.(haml)})
19
20
  watch(%r{css/.+\.(css)})
20
21
  watch(%r{sass/.+\.(scss|sass)})
21
22
  watch(%r{img/.+\.(png|jpeg|jpg)})
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: 27
4
+ hash: 25
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 0
10
- version: 0.1.0
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-03-19 00:00:00 -06:00
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.6.2
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