rails_apps_composer 2.2.4 → 2.2.5
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/rails_wizard/diagnostics.rb +1 -0
- data/recipes/frontend.rb +1 -1
- data/version.rb +1 -1
- metadata +4 -4
@@ -41,6 +41,7 @@ module RailsWizard
|
|
41
41
|
@@prefs << {:railsapps=>"none", :database=>"sqlite", :unit_test=>"rspec", :integration=>"capybara", :fixtures=>"factory_girl", :frontend=>"bootstrap", :bootstrap=>"sass", :email=>"none", :authentication=>"omniauth", :omniauth_provider=>"twitter", :authorization=>"cancan", :form_builder=>"none", :starter_app=>"admin_app"}
|
42
42
|
@@prefs << {:railsapps=>"none", :database=>"sqlite", :unit_test=>"rspec", :integration=>"cucumber", :fixtures=>"none", :frontend=>"bootstrap", :bootstrap=>"sass", :email=>"gmail", :authentication=>"devise", :devise_modules=>"invitable", :authorization=>"cancan", :form_builder=>"simple_form", :starter_app=>"admin_app"}
|
43
43
|
@@prefs << {:railsapps=>"none", :database=>"sqlite", :unit_test=>"rspec", :integration=>"cucumber", :fixtures=>"factory_girl", :frontend=>"bootstrap", :bootstrap=>"sass", :email=>"gmail", :authentication=>"devise", :devise_modules=>"default", :authorization=>"cancan", :form_builder=>"none", :starter_app=>"admin_app"}
|
44
|
+
@@prefs << {:railsapps=>"none", :database=>"sqlite", :unit_test=>"test_unit", :integration=>"none", :fixtures=>"none", :frontend=>"bootstrap", :bootstrap=>"less", :email=>"sendgrid", :authentication=>"devise", :devise_modules=>"confirmable", :authorization=>"cancan", :form_builder=>"none", :starter_app=>"admin_app"}
|
44
45
|
|
45
46
|
def self.recipes
|
46
47
|
@@recipes
|
data/recipes/frontend.rb
CHANGED
@@ -27,7 +27,6 @@ after_bundler do
|
|
27
27
|
gsub_file application_layout_file, /App_Name/, "#{app_name.humanize.titleize}"
|
28
28
|
gsub_file navigation_partial_file, /App_Name/, "#{app_name.humanize.titleize}"
|
29
29
|
### CSS ###
|
30
|
-
remove_file 'app/assets/stylesheets/application.css'
|
31
30
|
copy_from_repo 'app/assets/stylesheets/application.css.scss'
|
32
31
|
copy_from_repo 'app/assets/stylesheets/application-bootstrap.css.scss', :prefs => 'bootstrap'
|
33
32
|
if prefer :bootstrap, 'less'
|
@@ -50,6 +49,7 @@ RUBY
|
|
50
49
|
elsif prefer :frontend, 'normalize'
|
51
50
|
copy_from 'https://raw.github.com/necolas/normalize.css/master/normalize.css', 'app/assets/stylesheets/normalize.css'
|
52
51
|
end
|
52
|
+
remove_file 'app/assets/stylesheets/application.css'
|
53
53
|
### GIT ###
|
54
54
|
git :add => '.' if prefer :git, true
|
55
55
|
git :commit => "-aqm 'rails_apps_composer: front-end framework'" if prefer :git, true
|
data/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails_apps_composer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.2.
|
4
|
+
version: 2.2.5
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-08-
|
12
|
+
date: 2012-08-30 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: i18n
|
@@ -201,7 +201,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
201
201
|
version: '0'
|
202
202
|
segments:
|
203
203
|
- 0
|
204
|
-
hash:
|
204
|
+
hash: 4183328793162345601
|
205
205
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
206
206
|
none: false
|
207
207
|
requirements:
|
@@ -210,7 +210,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
210
210
|
version: '0'
|
211
211
|
segments:
|
212
212
|
- 0
|
213
|
-
hash:
|
213
|
+
hash: 4183328793162345601
|
214
214
|
requirements: []
|
215
215
|
rubyforge_project: rails_apps_composer
|
216
216
|
rubygems_version: 1.8.24
|