topkit 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/topkit/app_builder.rb +3 -1
- data/lib/topkit/version.rb +1 -1
- metadata +1 -1
data/lib/topkit/app_builder.rb
CHANGED
@@ -13,6 +13,8 @@ module Topkit
|
|
13
13
|
g.controller_specs false
|
14
14
|
g.helper_specs false
|
15
15
|
g.routing_specs false
|
16
|
+
g.request_specs false
|
17
|
+
g.stylesheets false
|
16
18
|
end
|
17
19
|
|
18
20
|
RUBY
|
@@ -87,7 +89,7 @@ module Topkit
|
|
87
89
|
|
88
90
|
def setup_stylesheets
|
89
91
|
remove_file 'app/assets/stylesheets/application.css'
|
90
|
-
create_file 'application.css.scss'
|
92
|
+
create_file 'app/assets/stylesheets/application.css.scss'
|
91
93
|
end
|
92
94
|
|
93
95
|
def init_git
|
data/lib/topkit/version.rb
CHANGED