hazel 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +7 -0
- data/Gemfile.lock +11 -0
- data/MIT-LICENSE +17 -16
- data/README.md +75 -0
- data/Rakefile +9 -0
- data/bin/hazel +2 -7
- data/lib/extensions/string.rb +36 -0
- data/lib/hazel/cli.rb +102 -22
- data/lib/hazel/version.rb +3 -3
- data/lib/templates/Gemfile +32 -0
- data/lib/templates/README.md +1 -0
- data/lib/templates/Rakefile +31 -0
- data/lib/templates/app.rb +11 -0
- data/lib/templates/config/db.yml +35 -0
- data/lib/templates/config/initializers/database.rb +9 -0
- data/lib/templates/config/initializers/redis.rb +3 -0
- data/lib/templates/config/redis.yml +14 -0
- data/lib/templates/config.ru +15 -0
- data/lib/templates/public/favicon.ico +0 -0
- data/lib/templates/public/images/.gitkeep +0 -0
- data/{app → lib/templates}/public/images/hazel_icon.png +0 -0
- data/lib/templates/public/images/hazel_small.png +0 -0
- data/lib/templates/public/javascripts/.gitkeep +0 -0
- data/lib/templates/public/stylesheets/main.css +116 -0
- data/lib/templates/spec/app_spec.rb +14 -0
- data/lib/templates/spec/spec_helper.rb +15 -0
- data/lib/templates/views/layout.erb.tt +37 -0
- data/lib/templates/views/welcome.erb +19 -0
- data/spec/spec_helper.rb +5 -0
- data/spec/string_extension_spec.rb +48 -0
- metadata +71 -95
- data/README.rdoc +0 -49
- data/app/Gemfile +0 -5
- data/app/Gemfile.lock +0 -23
- data/app/config.ru +0 -7
- data/app/hazel.rb +0 -23
- data/app/public/favicon.ico +0 -0
- data/app/public/images/hazel.png +0 -0
- data/app/public/images/hazel_medium.png +0 -0
- data/app/public/images/hazel_small.png +0 -0
- data/app/public/stylesheets/_buttons.scss +0 -40
- data/app/public/stylesheets/_reset.scss +0 -104
- data/app/public/stylesheets/all.css +0 -1
- data/app/public/stylesheets/all.scss +0 -81
- data/app/views/bookmarklet.haml +0 -8
- data/app/views/index.haml +0 -10
- data/app/views/layout.haml +0 -11
- data/app/views/manage.haml +0 -7
data/app/views/index.haml
DELETED
data/app/views/layout.haml
DELETED
@@ -1,11 +0,0 @@
|
|
1
|
-
!!!5
|
2
|
-
%html{ :lang => 'en' }
|
3
|
-
%head
|
4
|
-
%meta{ :charset => 'utf-8' }
|
5
|
-
%link{ :rel => "shortcut icon", :href => "/favicon.ico", :type => "image/x-icon" }
|
6
|
-
%link{ :rel => "stylesheet", :href => "/stylesheets/all.css", :type => "text/css" }
|
7
|
-
/[if lt IE 9]
|
8
|
-
%script{:src => "http://html5shiv.googlecode.com/svn/trunk/html5.js"}
|
9
|
-
%title Hazel
|
10
|
-
%body{ :class => body_class }
|
11
|
-
= yield
|