Skip to content

Commit

Permalink
Ported to Siteleaf
Browse files Browse the repository at this point in the history
  • Loading branch information
destroytoday committed Sep 16, 2013
1 parent e6fb2c8 commit 4d7bb73
Show file tree
Hide file tree
Showing 10 changed files with 565 additions and 61 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.DS_Store
.sass-cache
config.ru
1 change: 1 addition & 0 deletions .rbenv-gemsets
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
martin-gemset
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1.9.3-p392
5 changes: 5 additions & 0 deletions .siteleafignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.*
Gemfile*
Guardfile
LICENSE
README.md
8 changes: 8 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
source 'https://rubygems.org'

gem 'rack'
gem 'siteleaf'
gem 'racksh'
gem 'guard-sass'
gem 'guard-coffeescript'
gem 'guard-livereload'
80 changes: 80 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
GEM
remote: https://rubygems.org/
specs:
coderay (1.0.9)
coffee-script (2.2.0)
coffee-script-source
execjs
coffee-script-source (1.6.3)
em-websocket (0.5.0)
eventmachine (>= 0.12.9)
http_parser.rb (~> 0.5.3)
eventmachine (1.0.3)
execjs (2.0.1)
ffi (1.9.0)
formatador (0.2.4)
guard (1.8.3)
formatador (>= 0.2.4)
listen (~> 1.3)
lumberjack (>= 1.0.2)
pry (>= 0.9.10)
thor (>= 0.14.6)
guard-coffeescript (1.3.3)
coffee-script (>= 2.2.0)
guard (>= 1.1.0)
guard-livereload (1.4.0)
em-websocket (>= 0.5.0)
guard (>= 1.8.0)
multi_json (~> 1.7)
guard-sass (1.3.2)
guard (>= 1.1.0)
sass (>= 3.1)
httmultiparty (0.3.10)
httparty (>= 0.7.3)
multipart-post
http_parser.rb (0.5.3)
httparty (0.11.0)
multi_json (~> 1.0)
multi_xml (>= 0.5.2)
listen (1.3.1)
rb-fsevent (>= 0.9.3)
rb-inotify (>= 0.9)
rb-kqueue (>= 0.2)
lumberjack (1.0.4)
method_source (0.8.2)
multi_json (1.8.0)
multi_xml (0.5.5)
multipart-post (1.2.0)
pry (0.9.12.2)
coderay (~> 1.0.5)
method_source (~> 0.8)
slop (~> 3.4)
rack (1.5.2)
rack-test (0.6.2)
rack (>= 1.0)
racksh (1.0.0)
rack (>= 1.0)
rack-test (>= 0.5)
rb-fsevent (0.9.3)
rb-inotify (0.9.2)
ffi (>= 0.5.0)
rb-kqueue (0.2.0)
ffi (>= 0.5.0)
sass (3.2.10)
siteleaf (0.9.15)
httmultiparty
httparty
rack
slop (3.4.6)
thor (0.18.1)

PLATFORMS
ruby

DEPENDENCIES
guard-coffeescript
guard-livereload
guard-sass
rack
racksh
siteleaf
11 changes: 11 additions & 0 deletions Guardfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
guard 'sass', :output => 'assets/styles', :all_on_start => true, :style => :compressed do
watch %r{^assets/styles/(.+\.sass)$}
end

guard 'coffeescript', :output => 'assets/scripts', :all_on_start => true do
watch(%r{^assets/scripts/(.+\.coffee)})
end

guard 'livereload' do
watch(%r{.+\.(css|js|html)})
end
Loading

0 comments on commit 4d7bb73

Please sign in to comment.