gearup 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -1 +1,2 @@
1
1
  pkg
2
+ Gemfile.lock
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)
@@ -1,3 +1,3 @@
1
1
  module Gearup
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
@@ -0,0 +1,10 @@
1
+ !!!html5
2
+ %html
3
+ %head
4
+ %style
5
+ :plain
6
+ body {
7
+ background-color: red
8
+ }
9
+ %body
10
+ %h1 WOOOOOOOOOO
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: gearup
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.3
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