rails_apps_composer 3.1.2 → 3.1.3
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/recipes/setup.rb +29 -27
- data/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3a6ed78250897cfd5becb4a633dca7c4230aa617
|
|
4
|
+
data.tar.gz: 1e28500118c055dd994e7c66693ffda92a2bb22d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fc6a23882eac142eb9a685b19fa301d3dedba62858c2123b3b34184a3c7f9643bbef400b4fd06dcc470080b86acf150d48e062e729ad4cf1ec5956e4abd37d3b
|
|
7
|
+
data.tar.gz: 7284d15825e3a85444b4c1d6fd1d09d8940f0a90e260934e455ba5c42733a7401c82178a077021a876b207bf78894e24253e9ea63eb2d2ad4d2a9c75f29b39d2
|
data/recipes/setup.rb
CHANGED
|
@@ -124,33 +124,35 @@ end
|
|
|
124
124
|
# save configuration before anything can fail
|
|
125
125
|
create_file 'config/railscomposer.yml', "# This application was generated with Rails Composer\n\n"
|
|
126
126
|
append_to_file 'config/railscomposer.yml' do <<-TEXT
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
127
|
+
development:
|
|
128
|
+
apps4: #{prefs[:apps4]}
|
|
129
|
+
announcements: #{prefs[:announcements]}
|
|
130
|
+
dev_webserver: #{prefs[:dev_webserver]}
|
|
131
|
+
prod_webserver: #{prefs[:prod_webserver]}
|
|
132
|
+
database: #{prefs[:database]}
|
|
133
|
+
templates: #{prefs[:templates]}
|
|
134
|
+
tests: #{prefs[:tests]}
|
|
135
|
+
continuous_testing: #{prefs[:continuous_testing]}
|
|
136
|
+
frontend: #{prefs[:frontend]}
|
|
137
|
+
email: #{prefs[:email]}
|
|
138
|
+
authentication: #{prefs[:authentication]}
|
|
139
|
+
devise_modules: #{prefs[:devise_modules]}
|
|
140
|
+
omniauth_provider: #{prefs[:omniauth_provider]}
|
|
141
|
+
authorization: #{prefs[:authorization]}
|
|
142
|
+
form_builder: #{prefs[:form_builder]}
|
|
143
|
+
pages: #{prefs[:pages]}
|
|
144
|
+
layouts: #{prefs[:layouts]}
|
|
145
|
+
locale: #{prefs[:locale]}
|
|
146
|
+
analytics: #{prefs[:analytics]}
|
|
147
|
+
deployment: #{prefs[:deployment]}
|
|
148
|
+
ban_spiders: #{prefs[:ban_spiders]}
|
|
149
|
+
github: #{prefs[:github]}
|
|
150
|
+
local_env_file: #{prefs[:local_env_file]}
|
|
151
|
+
quiet_assets: #{prefs[:quiet_assets]}
|
|
152
|
+
better_errors: #{prefs[:better_errors]}
|
|
153
|
+
pry: #{prefs[:pry]}
|
|
154
|
+
rvmrc: #{prefs[:rvmrc]}
|
|
155
|
+
dashboard: #{prefs[:dashboard]}
|
|
154
156
|
TEXT
|
|
155
157
|
end
|
|
156
158
|
|
data/version.rb
CHANGED