gearup 0.0.3 → 0.0.4
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/.gitignore +1 -0
- data/bin/gearup +2 -0
- data/lib/gearup/version.rb +1 -1
- data/test/index.html.haml +10 -0
- metadata +3 -1
data/.gitignore
CHANGED
data/bin/gearup
CHANGED
|
@@ -5,9 +5,11 @@ require 'rack'
|
|
|
5
5
|
require 'less'
|
|
6
6
|
require 'coffee-script'
|
|
7
7
|
require 'sprockets'
|
|
8
|
+
require 'haml'
|
|
8
9
|
|
|
9
10
|
|
|
10
11
|
env = Sprockets::Environment.new ARGV[0] || "."
|
|
12
|
+
env.register_engine '.haml', Tilt::HamlTemplate
|
|
11
13
|
env.append_path "."
|
|
12
14
|
|
|
13
15
|
Rack::Handler::WEBrick.run(env, :Port => 3000)
|
data/lib/gearup/version.rb
CHANGED
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: gearup
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.0.
|
|
5
|
+
version: 0.0.4
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Andrew Kiellor
|
|
@@ -131,6 +131,7 @@ files:
|
|
|
131
131
|
- lib/gearup/version.rb
|
|
132
132
|
- test/application.css.less
|
|
133
133
|
- test/application.js.coffee
|
|
134
|
+
- test/index.html.haml
|
|
134
135
|
homepage: ""
|
|
135
136
|
licenses: []
|
|
136
137
|
|
|
@@ -167,3 +168,4 @@ summary: Sprockets + Thin to get you going with static content.
|
|
|
167
168
|
test_files:
|
|
168
169
|
- test/application.css.less
|
|
169
170
|
- test/application.js.coffee
|
|
171
|
+
- test/index.html.haml
|