forked from wezm/wezm.net
Add guard to Gemfile
This commit is contained in:
parent
6279931338
commit
6994ed341c
3 changed files with 32 additions and 3 deletions
5
Gemfile
5
Gemfile
|
@ -1,10 +1,13 @@
|
||||||
source :rubygems
|
source :rubygems
|
||||||
|
|
||||||
gem 'mime-types'
|
gem 'mime-types'
|
||||||
gem 'nanoc3'
|
gem 'nanoc'
|
||||||
gem 'bitly'
|
gem 'bitly'
|
||||||
gem 'haml'
|
gem 'haml'
|
||||||
gem 'rdiscount'
|
gem 'rdiscount'
|
||||||
gem 'rubypants'
|
gem 'rubypants'
|
||||||
gem 'nokogiri'
|
gem 'nokogiri'
|
||||||
gem 'builder'
|
gem 'builder'
|
||||||
|
gem 'rb-fsevent'
|
||||||
|
gem 'guard'
|
||||||
|
gem 'guard-nanoc'
|
||||||
|
|
22
Gemfile.lock
22
Gemfile.lock
|
@ -7,27 +7,44 @@ GEM
|
||||||
httparty (>= 0.5.2)
|
httparty (>= 0.5.2)
|
||||||
oauth2 (>= 0.1.1)
|
oauth2 (>= 0.1.1)
|
||||||
builder (3.0.0)
|
builder (3.0.0)
|
||||||
|
configuration (1.2.0)
|
||||||
crack (0.1.8)
|
crack (0.1.8)
|
||||||
cri (1.0.1)
|
cri (1.0.1)
|
||||||
faraday (0.5.4)
|
faraday (0.5.4)
|
||||||
addressable (~> 2.2.2)
|
addressable (~> 2.2.2)
|
||||||
multipart-post (~> 1.1.0)
|
multipart-post (~> 1.1.0)
|
||||||
rack (>= 1.1.0, < 2)
|
rack (>= 1.1.0, < 2)
|
||||||
|
guard (0.3.0)
|
||||||
|
open_gem (~> 1.4.2)
|
||||||
|
thor (~> 0.14.6)
|
||||||
|
guard-nanoc (0.1.0)
|
||||||
|
guard (>= 0.2.1)
|
||||||
|
nanoc (>= 3.1.5)
|
||||||
haml (3.0.25)
|
haml (3.0.25)
|
||||||
httparty (0.7.2)
|
httparty (0.7.2)
|
||||||
crack (= 0.1.8)
|
crack (= 0.1.8)
|
||||||
|
launchy (0.3.7)
|
||||||
|
configuration (>= 0.0.5)
|
||||||
|
rake (>= 0.8.1)
|
||||||
mime-types (1.16)
|
mime-types (1.16)
|
||||||
multi_json (0.0.5)
|
multi_json (0.0.5)
|
||||||
multipart-post (1.1.0)
|
multipart-post (1.1.0)
|
||||||
|
nanoc (3.1.6)
|
||||||
|
nanoc3 (>= 3.1.6)
|
||||||
nanoc3 (3.1.6)
|
nanoc3 (3.1.6)
|
||||||
cri (>= 1.0.0)
|
cri (>= 1.0.0)
|
||||||
nokogiri (1.4.4)
|
nokogiri (1.4.4)
|
||||||
oauth2 (0.1.1)
|
oauth2 (0.1.1)
|
||||||
faraday (~> 0.5.0)
|
faraday (~> 0.5.0)
|
||||||
multi_json (~> 0.0.4)
|
multi_json (~> 0.0.4)
|
||||||
|
open_gem (1.4.2)
|
||||||
|
launchy (~> 0.3.5)
|
||||||
rack (1.2.1)
|
rack (1.2.1)
|
||||||
|
rake (0.8.7)
|
||||||
|
rb-fsevent (0.3.9)
|
||||||
rdiscount (1.6.5)
|
rdiscount (1.6.5)
|
||||||
rubypants (0.2.0)
|
rubypants (0.2.0)
|
||||||
|
thor (0.14.6)
|
||||||
|
|
||||||
PLATFORMS
|
PLATFORMS
|
||||||
ruby
|
ruby
|
||||||
|
@ -35,9 +52,12 @@ PLATFORMS
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
bitly
|
bitly
|
||||||
builder
|
builder
|
||||||
|
guard
|
||||||
|
guard-nanoc
|
||||||
haml
|
haml
|
||||||
mime-types
|
mime-types
|
||||||
nanoc3
|
nanoc
|
||||||
nokogiri
|
nokogiri
|
||||||
|
rb-fsevent
|
||||||
rdiscount
|
rdiscount
|
||||||
rubypants
|
rubypants
|
||||||
|
|
6
Guardfile
Normal file
6
Guardfile
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
guard 'nanoc' do
|
||||||
|
watch(%r'^config.yaml')
|
||||||
|
watch(%r'^Rules')
|
||||||
|
watch(%r'^layouts\/')
|
||||||
|
watch(%r'^content\/')
|
||||||
|
end
|
Loading…
Reference in a new issue