rails_apps_composer 3.1.8 → 3.1.9
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.
- checksums.yaml +4 -4
- data/lib/rails_wizard/diagnostics.rb +0 -1
- data/recipes/extras.rb +0 -10
- data/recipes/gems.rb +2 -10
- data/recipes/learn_rails.rb +1 -6
- data/recipes/rails_bootstrap.rb +0 -1
- data/recipes/rails_devise.rb +0 -1
- data/recipes/rails_devise_pundit.rb +0 -1
- data/recipes/rails_devise_roles.rb +0 -1
- data/recipes/rails_foundation.rb +0 -1
- data/recipes/rails_mailinglist_activejob.rb +1 -6
- data/recipes/rails_omniauth.rb +0 -1
- data/recipes/rails_signup_download.rb +0 -1
- data/recipes/rails_stripe_checkout.rb +0 -1
- data/recipes/rails_stripe_coupons.rb +0 -1
- data/recipes/rails_stripe_membership_saas.rb +0 -1
- data/recipes/readme.rb +0 -2
- data/recipes/setup.rb +0 -1
- data/templates/layout.erb +0 -1
- data/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 469cd6bb9a9ee2e610937ef74730b4e9733ab236
|
|
4
|
+
data.tar.gz: 93820e93700b79f6e345d67895145a91403b1d69
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2072aedef64227be3daa7d8286d902b2089b3312a0a0d751010b8239b0c42eab5e60402a319e2833a1b49e7695425cd533a629a5982e8a26cfa610da3ab647d5
|
|
7
|
+
data.tar.gz: 194cf7298a46b219a144f842060874c7463295ce975decb757beb5c10ff71a66e761ca3b450fc4f164de9f9281ce439a126cff481d92c458de7148658f060d5a
|
data/recipes/extras.rb
CHANGED
|
@@ -1,13 +1,6 @@
|
|
|
1
1
|
# Application template recipe for the rails_apps_composer. Change the recipe here:
|
|
2
2
|
# https://github.com/RailsApps/rails_apps_composer/blob/master/recipes/extras.rb
|
|
3
3
|
|
|
4
|
-
## QUIET ASSETS
|
|
5
|
-
prefs[:quiet_assets] = true if config['quiet_assets']
|
|
6
|
-
if prefs[:quiet_assets]
|
|
7
|
-
say_wizard "recipe setting quiet_assets for reduced asset pipeline logging"
|
|
8
|
-
add_gem 'quiet_assets', :group => :development
|
|
9
|
-
end
|
|
10
|
-
|
|
11
4
|
## LOCAL_ENV.YML FILE
|
|
12
5
|
prefs[:local_env_file] = config['local_env_file'] unless (config['local_env_file'] == 'none')
|
|
13
6
|
|
|
@@ -165,9 +158,6 @@ config:
|
|
|
165
158
|
type: multiple_choice
|
|
166
159
|
prompt: Add gem and file for environment variables?
|
|
167
160
|
choices: [ [None, none], [Add .env with Foreman, foreman]]
|
|
168
|
-
- quiet_assets:
|
|
169
|
-
type: boolean
|
|
170
|
-
prompt: Reduce assets logger noise during development?
|
|
171
161
|
- better_errors:
|
|
172
162
|
type: boolean
|
|
173
163
|
prompt: Improve error reporting with 'better_errors' during development?
|
data/recipes/gems.rb
CHANGED
|
@@ -90,17 +90,9 @@ end
|
|
|
90
90
|
## Pages
|
|
91
91
|
case prefs[:pages]
|
|
92
92
|
when 'about'
|
|
93
|
-
|
|
94
|
-
add_gem 'high_voltage', github: 'thoughtbot/high_voltage'
|
|
95
|
-
else
|
|
96
|
-
add_gem 'high_voltage'
|
|
97
|
-
end
|
|
93
|
+
add_gem 'high_voltage'
|
|
98
94
|
when 'about+users'
|
|
99
|
-
|
|
100
|
-
add_gem 'high_voltage', github: 'thoughtbot/high_voltage'
|
|
101
|
-
else
|
|
102
|
-
add_gem 'high_voltage'
|
|
103
|
-
end
|
|
95
|
+
add_gem 'high_voltage'
|
|
104
96
|
end
|
|
105
97
|
|
|
106
98
|
## Email
|
data/recipes/learn_rails.rb
CHANGED
|
@@ -21,7 +21,6 @@ if prefer :apps4, 'learn-rails'
|
|
|
21
21
|
prefs[:local_env_file] = 'none'
|
|
22
22
|
prefs[:prod_webserver] = 'same'
|
|
23
23
|
prefs[:pry] = false
|
|
24
|
-
prefs[:quiet_assets] = true
|
|
25
24
|
prefs[:secrets] = ['owner_email', 'mailchimp_list_id', 'mailchimp_api_key']
|
|
26
25
|
prefs[:templates] = 'erb'
|
|
27
26
|
prefs[:tests] = false
|
|
@@ -32,11 +31,7 @@ if prefer :apps4, 'learn-rails'
|
|
|
32
31
|
prefs[:disable_turbolinks] = false
|
|
33
32
|
|
|
34
33
|
# gems
|
|
35
|
-
|
|
36
|
-
add_gem 'high_voltage', github: 'thoughtbot/high_voltage'
|
|
37
|
-
else
|
|
38
|
-
add_gem 'high_voltage'
|
|
39
|
-
end
|
|
34
|
+
add_gem 'high_voltage'
|
|
40
35
|
add_gem 'gibbon'
|
|
41
36
|
gsub_file 'Gemfile', /gem 'sqlite3'\n/, ''
|
|
42
37
|
add_gem 'sqlite3', :group => :development
|
data/recipes/rails_bootstrap.rb
CHANGED
data/recipes/rails_devise.rb
CHANGED
data/recipes/rails_foundation.rb
CHANGED
|
@@ -10,7 +10,6 @@ if prefer :apps4, 'rails-mailinglist-activejob'
|
|
|
10
10
|
prefs[:git] = true
|
|
11
11
|
prefs[:local_env_file] = false
|
|
12
12
|
prefs[:pry] = false
|
|
13
|
-
prefs[:quiet_assets] = true
|
|
14
13
|
prefs[:secrets] = ['mailchimp_list_id', 'mailchimp_api_key']
|
|
15
14
|
prefs[:pages] = 'about'
|
|
16
15
|
prefs[:locale] = 'none'
|
|
@@ -18,11 +17,7 @@ if prefer :apps4, 'rails-mailinglist-activejob'
|
|
|
18
17
|
|
|
19
18
|
# gems
|
|
20
19
|
add_gem 'gibbon'
|
|
21
|
-
|
|
22
|
-
add_gem 'high_voltage', github: 'thoughtbot/high_voltage'
|
|
23
|
-
else
|
|
24
|
-
add_gem 'high_voltage'
|
|
25
|
-
end
|
|
20
|
+
add_gem 'high_voltage'
|
|
26
21
|
add_gem 'sucker_punch'
|
|
27
22
|
|
|
28
23
|
stage_two do
|
data/recipes/rails_omniauth.rb
CHANGED
|
@@ -10,7 +10,6 @@ if prefer :apps4, 'rails-signup-download'
|
|
|
10
10
|
prefs[:git] = true
|
|
11
11
|
prefs[:local_env_file] = false
|
|
12
12
|
prefs[:pry] = false
|
|
13
|
-
prefs[:quiet_assets] = true
|
|
14
13
|
prefs[:secrets] = ['mailchimp_list_id', 'mailchimp_api_key']
|
|
15
14
|
prefs[:pages] = 'about+users'
|
|
16
15
|
prefs[:locale] = 'none'
|
|
@@ -11,7 +11,6 @@ if prefer :apps4, 'rails-stripe-membership-saas'
|
|
|
11
11
|
prefs[:git] = true
|
|
12
12
|
prefs[:local_env_file] = false
|
|
13
13
|
prefs[:pry] = false
|
|
14
|
-
prefs[:quiet_assets] = true
|
|
15
14
|
prefs[:disable_turbolinks] = true
|
|
16
15
|
prefs[:secrets] = ['stripe_publishable_key',
|
|
17
16
|
'stripe_api_key',
|
data/recipes/readme.rb
CHANGED
|
@@ -67,8 +67,6 @@ option Create a GitHub repository? (y/n)
|
|
|
67
67
|
choose Enter your selection: [#{prefs[:github]}]
|
|
68
68
|
option Add gem and file for environment variables?
|
|
69
69
|
choose Enter your selection: [#{prefs[:local_env_file]}]
|
|
70
|
-
option Reduce assets logger noise during development?
|
|
71
|
-
choose Enter your selection: [#{prefs[:quiet_assets]}]
|
|
72
70
|
option Improve error reporting with 'better_errors' during development?
|
|
73
71
|
choose Enter your selection: [#{prefs[:better_errors]}]
|
|
74
72
|
option Use 'pry' as console replacement during development and test?
|
data/recipes/setup.rb
CHANGED
|
@@ -148,7 +148,6 @@ development:
|
|
|
148
148
|
ban_spiders: #{prefs[:ban_spiders]}
|
|
149
149
|
github: #{prefs[:github]}
|
|
150
150
|
local_env_file: #{prefs[:local_env_file]}
|
|
151
|
-
quiet_assets: #{prefs[:quiet_assets]}
|
|
152
151
|
better_errors: #{prefs[:better_errors]}
|
|
153
152
|
pry: #{prefs[:pry]}
|
|
154
153
|
rvmrc: #{prefs[:rvmrc]}
|
data/templates/layout.erb
CHANGED
|
@@ -176,7 +176,6 @@ redacted_prefs.delete(:local_env_file)
|
|
|
176
176
|
redacted_prefs.delete(:main_branch)
|
|
177
177
|
redacted_prefs.delete(:prelaunch_branch)
|
|
178
178
|
redacted_prefs.delete(:prod_webserver)
|
|
179
|
-
redacted_prefs.delete(:quiet_assets)
|
|
180
179
|
redacted_prefs.delete(:rvmrc)
|
|
181
180
|
redacted_prefs.delete(:templates)
|
|
182
181
|
|
data/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rails_apps_composer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.1.
|
|
4
|
+
version: 3.1.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Daniel Kehoe
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-08-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: i18n
|