panacea-rails 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7d35a3f67ac133449cafa31c1d4338ce74dbeaa09ac12cffd47ecac9d6258dbc
4
- data.tar.gz: a0e97523beedec6bfb993cf2af1ffccea33c63d6a1e7e2c0041de93f1d74bccf
3
+ metadata.gz: 54ee2d74ff336976060d07ce9b8cc15d4b96e3e5959106f1e5d8c64bef0670d5
4
+ data.tar.gz: 9a2c1f592993cdbd308686eb3cc0772263a120e1dd4953665cc175f21092e419
5
5
  SHA512:
6
- metadata.gz: d8854eee538d9b7352ae1dfb7cb3034eae235c23e9d7ea984893212054b9f693268384f823a3df5505196a8e61205eb8e72c9cbd2dcbff9616e917d27c28f52c
7
- data.tar.gz: 9d8256f3a155999189e7c932d61361321e2d109219dab3c72d2b0e1c1306f78f13e0dffe49343df2584da51196847d53c28d97a8ca780458530d64cd99b2aaa1
6
+ metadata.gz: cc6a17ae49b13b9099aceb67db1498b81fbf975bb87b09b22191a42cfe0834ba084b383e2aa9c41a5178a2ed44164b1e30d7eb5a952caad7e50361c3bb3e43c2
7
+ data.tar.gz: 93348105d22f91265d51dd5b99f6718ac53f26797251d141dec1a585c3b182895f96de69a85ee0631723b191df704f66bb59a0cebbe09640e41260a149c77246
data/config/questions.yml CHANGED
@@ -1,124 +1,3 @@
1
- test_suite:
2
- title: Which framework do you want to use in your tests?
3
- type: select
4
- options:
5
- - minitest
6
- - rspec
7
-
8
- expected_coverage:
9
- title: What should be the minimum coverage expected by Simplecov?
10
- default: 80
11
- type: range
12
- range: 0-100
13
-
14
- http_stubs:
15
- title: Do you want to setup VCR or Webmock to stub out HTTP requests?
16
- type: select
17
- options:
18
- - none
19
- - vcr
20
- - webmock
21
-
22
- factory_bot:
23
- title: Do you want to use FactoryBot in your tests?
24
- default: false
25
- type: boolean
26
-
27
- faker:
28
- title: Do you want to use Faker in your tests?
29
- default: false
30
- type: boolean
31
-
32
- headless_chrome:
33
- title: Do you want to setup Headless Chrome as default driver for System Tests?
34
- default: false
35
- type: boolean
36
-
37
- pg_search:
38
- title: Do you want to add pg_search gem to enable PostgreSQL's full text search?
39
- default: false
40
- type: boolean
41
- condition: "passed_args =~ /--database=postgresql/"
42
-
43
- dotenv:
44
- title: Do you want to setup Dotenv to manage ENV variables in development?
45
- default: false
46
- type: boolean
47
-
48
- webpack:
49
- title: Do you want to use Webpacker to manage your app's frontend?
50
- default: false
51
- type: boolean
52
- subquestions:
53
- webpack_type:
54
- title: What framework do you want to pre-configure Webpack with?
55
- type: select
56
- options:
57
- - none
58
- - react
59
- - vue
60
- - angular
61
- - elm
62
- - stimulus
63
-
64
- devise:
65
- title: Do you want to setup Devise to handle users in your app?
66
- default: false
67
- type: boolean
68
- subquestions:
69
- devise_model_name:
70
- title: What should be your Devise model name?
71
- default: user
72
- type: text
73
- devise_override_views:
74
- title: Do you want to add the Devise's views in your app?
75
- default: false
76
- type: boolean
77
-
78
- pundit:
79
- title: Do you want to setup Pundit to handle authorizations?
80
- default: false
81
- type: boolean
82
-
83
- kaminari:
84
- title: Do you want to use Kaminari to handle pagination?
85
- default: false
86
- type: boolean
87
-
88
- oj:
89
- title: Do you want to setup OJ to optimize JSON handling in your app?
90
- default: false
91
- type: boolean
92
-
93
- money_rails:
94
- title: Do you want to use Money Rails to handle money amounts in your app?
95
- default: false
96
- type: boolean
97
-
98
- markdown:
99
- title: Do you want to use Redcarpet to handle Markdown in your app?
100
- default: false
101
- type: boolean
102
-
103
- background_job:
104
- title: Do you want to use a Background Jobs adapter?
105
- type: select
106
- options:
107
- - none
108
- - sidekiq
109
- - resque
110
- - sucker_punch
111
-
112
- foreman:
113
- title: Do you want to use Foreman to manage your app's processes?
114
- default: false
115
- type: boolean
116
-
117
- awesome_print:
118
- title: Do you want to use AwesomePrint in your console sessions?
119
- default: false
120
- type: boolean
121
-
122
1
  timezone:
123
2
  title: Please choose your app's default time zone
124
3
  type: select
@@ -290,18 +169,129 @@ locale:
290
169
  - Portuguese - pt
291
170
  - Russian - ru
292
171
 
293
- autocommit:
294
- title: Do you want to auto-generate the initial commit?
172
+ background_job:
173
+ title: Which background jobs adapter do you want to use?
174
+ type: select
175
+ options:
176
+ - none
177
+ - sidekiq
178
+ - resque
179
+ - sucker_punch
180
+
181
+ test_suite:
182
+ title: Which tool do you want to use for your tests?
183
+ type: select
184
+ options:
185
+ - minitest
186
+ - rspec
187
+
188
+ http_stubs:
189
+ title: Which tool do you want to use to stub out HTTP requests?
190
+ type: select
191
+ options:
192
+ - none
193
+ - vcr
194
+ - webmock
195
+
196
+ expected_coverage:
197
+ title: What should be the minimum coverage expected by Simplecov?
198
+ default: 80
199
+ type: range
200
+ range: 0-100
201
+
202
+ headless_chrome:
203
+ title: Do you want to setup Headless Chrome as default driver for System Tests?
204
+ default: false
205
+ type: boolean
206
+
207
+ factory_bot:
208
+ title: Do you want to use FactoryBot in your tests?
209
+ default: false
210
+ type: boolean
211
+
212
+ faker:
213
+ title: Do you want to use Faker in your tests?
214
+ default: false
215
+ type: boolean
216
+
217
+ dotenv:
218
+ title: Do you want to use Dotenv to manage ENV variables in development?
219
+ default: false
220
+ type: boolean
221
+
222
+ webpack:
223
+ title: Do you want to use Webpacker to manage your app's frontend?
295
224
  default: false
296
225
  type: boolean
297
226
  subquestions:
298
- commit_msg:
299
- title: What should be the commit's message?
300
- default: Initialize Rails App powered with Panacea
227
+ webpack_type:
228
+ title: What framework do you want to pre-configure Webpack with?
229
+ type: select
230
+ options:
231
+ - none
232
+ - react
233
+ - vue
234
+ - angular
235
+ - elm
236
+ - stimulus
237
+
238
+ pg_search:
239
+ title: Do you want to use pg_search gem to enable PostgreSQL's full text search?
240
+ default: false
241
+ type: boolean
242
+ condition: "passed_args =~ /--database=postgresql/"
243
+
244
+ devise:
245
+ title: Do you want to use Devise to handle users in your app?
246
+ default: false
247
+ type: boolean
248
+ subquestions:
249
+ devise_model_name:
250
+ title: What should be your Devise model name?
251
+ default: user
301
252
  type: text
253
+ devise_override_views:
254
+ title: Do you want to add the Devise's views in your app?
255
+ default: false
256
+ type: boolean
257
+
258
+ pundit:
259
+ title: Do you want to use Pundit to handle authorizations?
260
+ default: false
261
+ type: boolean
262
+
263
+ kaminari:
264
+ title: Do you want to use Kaminari to handle pagination?
265
+ default: false
266
+ type: boolean
267
+
268
+ oj:
269
+ title: Do you want to use OJ to optimize JSON handling in your app?
270
+ default: false
271
+ type: boolean
272
+
273
+ money_rails:
274
+ title: Do you want to use Money Rails to handle money amounts in your app?
275
+ default: false
276
+ type: boolean
277
+
278
+ markdown:
279
+ title: Do you want to use Redcarpet to handle Markdown in your app?
280
+ default: false
281
+ type: boolean
282
+
283
+ foreman:
284
+ title: Do you want to use Foreman to manage your app's processes?
285
+ default: false
286
+ type: boolean
287
+
288
+ awesome_print:
289
+ title: Do you want to use AwesomePrint in your console sessions?
290
+ default: false
291
+ type: boolean
302
292
 
303
293
  githook:
304
- title: Do you want to add a Git hook to help you to improve your workflow?
294
+ title: Do you want to use a Git hook to help you to improve your workflow?
305
295
  default: false
306
296
  type: boolean
307
297
  subquestions:
@@ -312,7 +302,17 @@ githook:
312
302
  - pre-commit
313
303
  - pre-push
314
304
 
305
+ autocommit:
306
+ title: Do you want to auto-generate the initial commit?
307
+ default: false
308
+ type: boolean
309
+ subquestions:
310
+ commit_msg:
311
+ title: What should be the commit's message?
312
+ default: Initialize Rails App powered with Panacea
313
+ type: text
314
+
315
315
  share_usage_info:
316
- title: Do you want help us improve Panacea by sharing with us your answers? [100% anonymous]
316
+ title: Do you want to help us improve Panacea by sharing with us your answers? [100% anonymous]
317
317
  default: true
318
318
  type: boolean
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Panacea # :nodoc:
4
4
  module Rails # :nodoc:
5
- VERSION = "0.1.0"
5
+ VERSION = "0.1.1"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: panacea-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Guillermo Moreno
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2018-09-03 00:00:00.000000000 Z
13
+ date: 2018-09-04 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: bundler