topkit 0.0.1 → 0.0.2
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/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