super 0.0.3 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardopts +11 -0
- data/CONTRIBUTING.md +56 -0
- data/README.md +65 -76
- data/STABILITY.md +50 -0
- data/app/assets/javascripts/super/application.js +1186 -11151
- data/app/assets/stylesheets/super/application.css +93514 -27381
- data/app/controllers/super/application_controller.rb +49 -72
- data/app/views/layouts/super/application.html.erb +24 -14
- data/app/views/super/application/_collection_header.html.erb +15 -0
- data/app/views/super/application/_filter.html.erb +14 -0
- data/app/views/super/application/_filter_type_select.html.erb +31 -0
- data/app/views/super/application/_filter_type_text.html.erb +22 -0
- data/app/views/super/application/_filter_type_timestamp.html.erb +35 -0
- data/app/views/super/application/_flash.html.erb +13 -13
- data/app/views/super/application/_form_field__destroy.html.erb +7 -3
- data/app/views/super/application/_form_field_select.html.erb +14 -8
- data/app/views/super/application/_form_field_text.html.erb +13 -5
- data/app/views/super/application/_form_fieldset.html.erb +1 -1
- data/app/views/super/application/_form_has_many.html.erb +5 -5
- data/app/views/super/application/_form_inline_errors.html.erb +1 -1
- data/app/views/super/application/_member_header.html.erb +16 -0
- data/app/views/super/application/_super_layout.html.erb +29 -0
- data/app/views/super/application/_super_pagination.html.erb +16 -0
- data/app/views/super/application/_super_panel.html.erb +7 -0
- data/app/views/super/application/_super_schema_display_actions.html.erb +5 -0
- data/app/views/super/application/_super_schema_display_index.html.erb +24 -0
- data/app/views/super/application/_super_schema_display_show.html.erb +8 -0
- data/app/views/super/application/_super_schema_form.html.erb +15 -0
- data/app/views/super/application/edit.html.erb +1 -6
- data/app/views/super/application/index.html.erb +1 -1
- data/app/views/super/application/new.html.erb +1 -6
- data/app/views/super/application/show.html.erb +1 -1
- data/app/views/super/feather/{_chevron_down.svg → _chevron_down.html} +0 -0
- data/config/locales/en.yml +5 -0
- data/docs/README.md +6 -0
- data/docs/cheat.md +41 -0
- data/docs/faq.md +44 -0
- data/docs/quick_start.md +45 -0
- data/docs/webpacker.md +17 -0
- data/docs/yard_customizations.rb +41 -0
- data/frontend/super-frontend/build.js +12 -12
- data/frontend/super-frontend/dist/application.css +93514 -27381
- data/frontend/super-frontend/dist/application.js +1186 -11151
- data/frontend/super-frontend/package.json +8 -4
- data/frontend/super-frontend/postcss.config.js +4 -4
- data/frontend/super-frontend/src/javascripts/super/application.ts +11 -9
- data/frontend/super-frontend/src/javascripts/super/apply_template_controller.ts +19 -0
- data/frontend/super-frontend/src/javascripts/super/rails__ujs.d.ts +1 -1
- data/frontend/super-frontend/src/javascripts/super/toggle_pending_destruction_controller.ts +15 -0
- data/frontend/super-frontend/src/stylesheets/super/application.css +63 -0
- data/frontend/super-frontend/tailwind.config.js +12 -4
- data/frontend/super-frontend/yarn.lock +1429 -1372
- data/lib/generators/super/install/install_generator.rb +16 -0
- data/lib/generators/super/resource/templates/resources_controller.rb.tt +1 -31
- data/lib/generators/super/webpacker/webpacker_generator.rb +10 -1
- data/lib/super.rb +26 -5
- data/lib/super/action_inquirer.rb +2 -2
- data/lib/super/assets.rb +108 -38
- data/lib/super/client_error.rb +43 -0
- data/lib/super/compatibility.rb +25 -0
- data/lib/super/configuration.rb +21 -69
- data/lib/super/controls.rb +9 -37
- data/lib/super/controls/optional.rb +79 -0
- data/lib/super/controls/required.rb +13 -0
- data/lib/super/controls/steps.rb +114 -0
- data/lib/super/display.rb +66 -3
- data/lib/super/display/guesser.rb +34 -0
- data/lib/super/display/schema_types.rb +55 -25
- data/lib/super/engine.rb +7 -1
- data/lib/super/error.rb +9 -9
- data/lib/super/filter.rb +12 -0
- data/lib/super/filter/form_object.rb +97 -0
- data/lib/super/filter/guesser.rb +30 -0
- data/lib/super/filter/operator.rb +103 -0
- data/lib/super/filter/plugin.rb +47 -0
- data/lib/super/filter/schema_types.rb +112 -0
- data/lib/super/form.rb +35 -0
- data/lib/super/form/builder.rb +48 -0
- data/lib/super/form/guesser.rb +27 -0
- data/lib/super/form/schema_types.rb +20 -23
- data/lib/super/form/strong_params.rb +29 -0
- data/lib/super/layout.rb +47 -0
- data/lib/super/link.rb +110 -0
- data/lib/super/pagination.rb +74 -8
- data/lib/super/panel.rb +30 -0
- data/lib/super/partial.rb +23 -0
- data/lib/super/partial/resolving.rb +24 -0
- data/lib/super/plugin.rb +34 -63
- data/lib/super/schema.rb +12 -22
- data/lib/super/schema/common.rb +25 -0
- data/lib/super/schema/guesser.rb +77 -0
- data/lib/super/version.rb +1 -1
- data/lib/super/view_helper.rb +43 -0
- metadata +133 -33
- data/app/views/super/application/_form.html.erb +0 -14
- data/app/views/super/application/_index.html.erb +0 -60
- data/app/views/super/application/_show.html.erb +0 -12
- data/frontend/super-frontend/src/javascripts/super/nested_attributes_controller.ts +0 -33
- data/lib/super/inline_callback.rb +0 -82
- data/lib/super/test_support/copy_app_templates/controllers/favorite_things_controller.rb +0 -50
- data/lib/super/test_support/copy_app_templates/controllers/members_controller.rb +0 -57
- data/lib/super/test_support/copy_app_templates/controllers/ships_controller.rb +0 -47
- data/lib/super/test_support/copy_app_templates/migrations/20190216224956_create_members.rb +0 -11
- data/lib/super/test_support/copy_app_templates/migrations/20190803143320_create_ships.rb +0 -11
- data/lib/super/test_support/copy_app_templates/migrations/20190806014121_add_ship_to_members.rb +0 -5
- data/lib/super/test_support/copy_app_templates/migrations/20191126050453_create_favorite_things.rb +0 -10
- data/lib/super/test_support/copy_app_templates/models/favorite_thing.rb +0 -7
- data/lib/super/test_support/copy_app_templates/models/member.rb +0 -23
- data/lib/super/test_support/copy_app_templates/models/ship.rb +0 -3
- data/lib/super/test_support/copy_app_templates/routes.rb +0 -11
- data/lib/super/test_support/copy_app_templates/seeds.rb +0 -2
- data/lib/super/test_support/fixtures/favorite_things.yml +0 -9
- data/lib/super/test_support/fixtures/members.yml +0 -336
- data/lib/super/test_support/fixtures/ships.yml +0 -10
- data/lib/super/test_support/generate_copy_app.rb +0 -41
- data/lib/super/test_support/generate_dummy.rb +0 -93
- data/lib/super/test_support/starfleet_seeder.rb +0 -50
- data/lib/super/view.rb +0 -25
- data/lib/tasks/super_tasks.rake +0 -4
@@ -1,336 +0,0 @@
|
|
1
|
-
---
|
2
|
-
picard:
|
3
|
-
name: Jean-Luc Picard
|
4
|
-
rank: Captain
|
5
|
-
position: Commanding Officer
|
6
|
-
ship: uss_enterprise_d
|
7
|
-
|
8
|
-
riker:
|
9
|
-
name: William T. Riker
|
10
|
-
rank: Commander
|
11
|
-
position: First Officer
|
12
|
-
ship: uss_enterprise_d
|
13
|
-
|
14
|
-
data:
|
15
|
-
name: Data
|
16
|
-
rank: Lieutenant Commander
|
17
|
-
position: Second Officer
|
18
|
-
ship: uss_enterprise_d
|
19
|
-
|
20
|
-
crusher:
|
21
|
-
name: Beverly Crusher
|
22
|
-
rank: Commander
|
23
|
-
position: Chief Medical Officer
|
24
|
-
ship: uss_enterprise_d
|
25
|
-
|
26
|
-
worf:
|
27
|
-
name: Worf
|
28
|
-
rank: Lieutenant Commander
|
29
|
-
position: Chief of Security
|
30
|
-
ship: uss_enterprise_d
|
31
|
-
|
32
|
-
la_forge:
|
33
|
-
name: Geordi La Forge
|
34
|
-
rank: Lieutenant Commander
|
35
|
-
position: Chief Engineering Officer
|
36
|
-
ship: uss_enterprise_d
|
37
|
-
|
38
|
-
troi:
|
39
|
-
name: Deanna Troi
|
40
|
-
rank: Commander
|
41
|
-
position: Counselor
|
42
|
-
ship: uss_enterprise_d
|
43
|
-
|
44
|
-
tasha:
|
45
|
-
name: Natasha Yar
|
46
|
-
rank: Lieutenant
|
47
|
-
position: Chief of Security
|
48
|
-
ship: uss_enterprise_d
|
49
|
-
|
50
|
-
miles:
|
51
|
-
name: Miles O'Brien
|
52
|
-
rank: NCO
|
53
|
-
position: Transporter Chief
|
54
|
-
ship: uss_enterprise_d
|
55
|
-
|
56
|
-
guinan:
|
57
|
-
name: Guinan
|
58
|
-
rank: NCO
|
59
|
-
position: Bartender
|
60
|
-
ship: uss_enterprise_d
|
61
|
-
|
62
|
-
sepulveda:
|
63
|
-
name: Fernando Sepulveda
|
64
|
-
rank: Lieutenant
|
65
|
-
position: Ops engineer
|
66
|
-
ship: uss_enterprise_d
|
67
|
-
|
68
|
-
jaxa:
|
69
|
-
name: Sito Jaxa
|
70
|
-
rank: Ensign
|
71
|
-
position: Security officer
|
72
|
-
ship: uss_enterprise_d
|
73
|
-
|
74
|
-
calloway:
|
75
|
-
name: Maddy Calloway
|
76
|
-
rank: Ensign
|
77
|
-
position: Medical technician
|
78
|
-
ship: uss_enterprise_d
|
79
|
-
|
80
|
-
mayter:
|
81
|
-
name: Van Mayter
|
82
|
-
rank: NCO
|
83
|
-
position: Engineer
|
84
|
-
ship: uss_enterprise_d
|
85
|
-
|
86
|
-
sutter:
|
87
|
-
name: Daniel Sutter
|
88
|
-
rank: Ensign
|
89
|
-
position: Engineer
|
90
|
-
ship: uss_enterprise_d
|
91
|
-
|
92
|
-
bernard:
|
93
|
-
name: Harry Bernard, Sr.
|
94
|
-
rank: Lieutenant
|
95
|
-
position: Oceanographer
|
96
|
-
ship: uss_enterprise_d
|
97
|
-
|
98
|
-
dangelo:
|
99
|
-
name: Dick D'Angelo
|
100
|
-
rank: Lieutenant
|
101
|
-
position: Ops Engineer
|
102
|
-
ship: uss_enterprise_d
|
103
|
-
|
104
|
-
ogawa:
|
105
|
-
name: Alyssa Ogawa
|
106
|
-
rank: Lieutenant
|
107
|
-
position: Nurse
|
108
|
-
ship: uss_enterprise_d
|
109
|
-
|
110
|
-
nesterowicz:
|
111
|
-
name: John Nesterowicz
|
112
|
-
rank: Lieutenant
|
113
|
-
position: WarpField Tech 2
|
114
|
-
ship: uss_enterprise_d
|
115
|
-
|
116
|
-
keiko:
|
117
|
-
name: Keiko O'Brien
|
118
|
-
rank: NCO
|
119
|
-
position: Botanist
|
120
|
-
ship: uss_enterprise_d
|
121
|
-
|
122
|
-
anaya:
|
123
|
-
name: April Anaya
|
124
|
-
rank: Ensign
|
125
|
-
position: Flight controller
|
126
|
-
ship: uss_enterprise_d
|
127
|
-
|
128
|
-
ziff:
|
129
|
-
name: Anaanda Ziff
|
130
|
-
rank: Lieutenant
|
131
|
-
position: Specialist
|
132
|
-
ship: uss_enterprise_d
|
133
|
-
|
134
|
-
tarses:
|
135
|
-
name: Simon Tarses
|
136
|
-
rank: NCO
|
137
|
-
position: Medical technician
|
138
|
-
ship: uss_enterprise_d
|
139
|
-
|
140
|
-
wallace:
|
141
|
-
name: Darien Wallace
|
142
|
-
rank: Lieutenant
|
143
|
-
position: Crewmember
|
144
|
-
ship: uss_enterprise_d
|
145
|
-
|
146
|
-
giddings:
|
147
|
-
name: Diana Giddings
|
148
|
-
rank: Lieutenant
|
149
|
-
position: Junior engineer
|
150
|
-
ship: uss_enterprise_d
|
151
|
-
|
152
|
-
pulaski:
|
153
|
-
name: Katherine Pulaski
|
154
|
-
rank: Commander
|
155
|
-
position: Medical officer
|
156
|
-
ship: uss_enterprise_d
|
157
|
-
|
158
|
-
dumont:
|
159
|
-
name: Suzanne Dumont
|
160
|
-
rank: Ensign
|
161
|
-
position: Crewmember
|
162
|
-
ship: uss_enterprise_d
|
163
|
-
|
164
|
-
tsu:
|
165
|
-
name: Lian T'Su
|
166
|
-
rank: Ensign
|
167
|
-
position: Operations officer
|
168
|
-
ship: uss_enterprise_d
|
169
|
-
|
170
|
-
lynch:
|
171
|
-
name: Leland T. Lynch
|
172
|
-
rank: Lieutenant Commander
|
173
|
-
position: Chief engineer
|
174
|
-
ship: uss_enterprise_d
|
175
|
-
|
176
|
-
dsora:
|
177
|
-
name: Jenna D'Sora
|
178
|
-
rank: Lieutenant Junior Grade
|
179
|
-
position: Security officer
|
180
|
-
ship: uss_enterprise_d
|
181
|
-
|
182
|
-
macdougal:
|
183
|
-
name: Sarah MacDougal
|
184
|
-
rank: Lieutenant Commander
|
185
|
-
position: Chief engineer
|
186
|
-
ship: uss_enterprise_d
|
187
|
-
|
188
|
-
shimoda:
|
189
|
-
name: Jim Shimoda
|
190
|
-
rank: NCO
|
191
|
-
position: Assistant chief engineer
|
192
|
-
ship: uss_enterprise_d
|
193
|
-
|
194
|
-
solis:
|
195
|
-
name: Orfil Solis
|
196
|
-
rank: Lieutenant Junior Grade
|
197
|
-
position: Flight controller
|
198
|
-
ship: uss_enterprise_d
|
199
|
-
|
200
|
-
rhodes:
|
201
|
-
name: Sandra Rhodes
|
202
|
-
rank: Lieutenant
|
203
|
-
position: Security officer
|
204
|
-
ship: uss_enterprise_d
|
205
|
-
|
206
|
-
fratis:
|
207
|
-
name: Jeffrey Fratis
|
208
|
-
rank: Lieutenant
|
209
|
-
position: Crewmember
|
210
|
-
ship: uss_enterprise_d
|
211
|
-
|
212
|
-
mees:
|
213
|
-
name: Jim Mees
|
214
|
-
rank: Lieutenant Commander
|
215
|
-
position: Crewmember
|
216
|
-
ship: uss_enterprise_d
|
217
|
-
|
218
|
-
hubbell:
|
219
|
-
name: Maggie Hubbell
|
220
|
-
rank: Ensign
|
221
|
-
position: Transporter chief
|
222
|
-
ship: uss_enterprise_d
|
223
|
-
|
224
|
-
rager:
|
225
|
-
name: Sariel Rager
|
226
|
-
rank: Ensign
|
227
|
-
position: Helmsman
|
228
|
-
ship: uss_enterprise_d
|
229
|
-
|
230
|
-
robinson:
|
231
|
-
name: B.G. Robinson
|
232
|
-
rank: Lieutenant
|
233
|
-
position: Transporter chief
|
234
|
-
ship: uss_enterprise_d
|
235
|
-
|
236
|
-
allenby:
|
237
|
-
name: Tess Allenby
|
238
|
-
rank: Ensign
|
239
|
-
position: Flight controller
|
240
|
-
ship: uss_enterprise_d
|
241
|
-
|
242
|
-
brooks:
|
243
|
-
name: Janet Brooks
|
244
|
-
rank: Ensign
|
245
|
-
position: Crewmember
|
246
|
-
ship: uss_enterprise_d
|
247
|
-
|
248
|
-
foster:
|
249
|
-
name: Don Foster, Jr.
|
250
|
-
rank: Lieutenant
|
251
|
-
position: WarpField Tech 1
|
252
|
-
ship: uss_enterprise_d
|
253
|
-
|
254
|
-
lefler:
|
255
|
-
name: Robin Lefler
|
256
|
-
rank: Ensign
|
257
|
-
position: Mission Specialist
|
258
|
-
ship: uss_enterprise_d
|
259
|
-
|
260
|
-
lavelle:
|
261
|
-
name: Sam Lavelle
|
262
|
-
rank: Lieutenant Junior Grade
|
263
|
-
position: Operations officer
|
264
|
-
ship: uss_enterprise_d
|
265
|
-
|
266
|
-
prieto:
|
267
|
-
name: Ben Prieto
|
268
|
-
rank: Lieutenant
|
269
|
-
position: Shuttlecraft Pilot
|
270
|
-
ship: uss_enterprise_d
|
271
|
-
|
272
|
-
pacelli:
|
273
|
-
name: Alfonse Pacelli
|
274
|
-
rank: Ensign
|
275
|
-
position: Specialist
|
276
|
-
ship: uss_enterprise_d
|
277
|
-
|
278
|
-
aster:
|
279
|
-
name: Marla Aster
|
280
|
-
rank: Lieutenant
|
281
|
-
position: Archaeologist
|
282
|
-
ship: uss_enterprise_d
|
283
|
-
|
284
|
-
barclay:
|
285
|
-
name: Reginald Barclay
|
286
|
-
rank: Lieutenant
|
287
|
-
position: Systems diagnostic engineer
|
288
|
-
ship: uss_enterprise_d
|
289
|
-
|
290
|
-
salvatore:
|
291
|
-
name: Bruno Salvatore
|
292
|
-
rank: Ensign
|
293
|
-
position: Specialist in biomechanical research
|
294
|
-
ship: uss_enterprise_d
|
295
|
-
|
296
|
-
juarez:
|
297
|
-
name: Francisca Juarez
|
298
|
-
rank: Lieutenant
|
299
|
-
position: Crewmember
|
300
|
-
ship: uss_enterprise_d
|
301
|
-
|
302
|
-
finks:
|
303
|
-
name: Wilbur Finks
|
304
|
-
rank: Lieutenant
|
305
|
-
position: Safety officer
|
306
|
-
ship: uss_enterprise_d
|
307
|
-
|
308
|
-
larson:
|
309
|
-
name: Linda Larson
|
310
|
-
rank: Lieutenant Junior Grade
|
311
|
-
position: Engineer
|
312
|
-
ship: uss_enterprise_d
|
313
|
-
|
314
|
-
gomez:
|
315
|
-
name: Sonya Gomez
|
316
|
-
rank: Ensign
|
317
|
-
position: Engineer
|
318
|
-
ship: uss_enterprise_d
|
319
|
-
|
320
|
-
hagler:
|
321
|
-
name: Edward Hagler
|
322
|
-
rank: Lieutenant
|
323
|
-
position: Crewmember
|
324
|
-
ship: uss_enterprise_d
|
325
|
-
|
326
|
-
lin:
|
327
|
-
name: Peter Lin
|
328
|
-
rank: Ensign
|
329
|
-
position: Flight controller
|
330
|
-
ship: uss_enterprise_d
|
331
|
-
|
332
|
-
kwan:
|
333
|
-
name: Daniel Kwan
|
334
|
-
rank: Lieutenant Junior Grade
|
335
|
-
position: Specialist
|
336
|
-
ship: uss_enterprise_d
|
@@ -1,41 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
require "rails/generators"
|
4
|
-
require_relative "../../generators/super/install/install_generator"
|
5
|
-
|
6
|
-
class SuperCopyAppGenerator < Rails::Generators::Base
|
7
|
-
source_root(File.expand_path("copy_app_templates", __dir__))
|
8
|
-
|
9
|
-
class_option :destination, required: true
|
10
|
-
|
11
|
-
def set_destination_root
|
12
|
-
self.destination_root = options[:destination]
|
13
|
-
end
|
14
|
-
|
15
|
-
def ensure_reasonable_directory
|
16
|
-
app_path = File.join(destination_root, "app")
|
17
|
-
if !File.directory?(app_path)
|
18
|
-
raise "Can't find dir: #{app_path}"
|
19
|
-
end
|
20
|
-
end
|
21
|
-
|
22
|
-
def install_super
|
23
|
-
Super::InstallGenerator.start([], destination_root: destination_root)
|
24
|
-
end
|
25
|
-
|
26
|
-
def copy_app
|
27
|
-
directory "models", "app/models"
|
28
|
-
directory "controllers", "app/controllers/admin"
|
29
|
-
end
|
30
|
-
|
31
|
-
def copy_db
|
32
|
-
directory "migrations", "db/migrate"
|
33
|
-
copy_file "seeds.rb", "db/seeds.rb"
|
34
|
-
end
|
35
|
-
|
36
|
-
def copy_config
|
37
|
-
copy_file "routes.rb", "config/routes.rb"
|
38
|
-
end
|
39
|
-
end
|
40
|
-
|
41
|
-
SuperCopyAppGenerator.start
|
@@ -1,93 +0,0 @@
|
|
1
|
-
require "fileutils"
|
2
|
-
require "tmpdir"
|
3
|
-
|
4
|
-
require "rails"
|
5
|
-
require "rails/generators/rails/app/app_generator"
|
6
|
-
require "rails/generators/rails/plugin/plugin_generator"
|
7
|
-
require "generators/super/install/install_generator"
|
8
|
-
|
9
|
-
module Rails
|
10
|
-
module Generators
|
11
|
-
class AppGenerator
|
12
|
-
def valid_const?
|
13
|
-
true
|
14
|
-
end
|
15
|
-
end
|
16
|
-
|
17
|
-
class PluginGenerator
|
18
|
-
def valid_const?
|
19
|
-
true
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|
23
|
-
end
|
24
|
-
|
25
|
-
class SuperDummyGenerator < Rails::Generators::Base
|
26
|
-
source_root(File.expand_path("templates", __dir__))
|
27
|
-
|
28
|
-
class_option :destination, required: true
|
29
|
-
|
30
|
-
def create_new_plugin
|
31
|
-
if plugin_name.blank?
|
32
|
-
warn "Not currently in a plugin directory"
|
33
|
-
exit
|
34
|
-
end
|
35
|
-
|
36
|
-
opts = {
|
37
|
-
force: true,
|
38
|
-
skip_active_storage: true,
|
39
|
-
skip_action_mailer: true,
|
40
|
-
skip_action_mailbox: true,
|
41
|
-
skip_action_text: true,
|
42
|
-
skip_active_storage: true,
|
43
|
-
skip_action_cable: true,
|
44
|
-
skip_puma: true,
|
45
|
-
skip_coffee: true,
|
46
|
-
database: "sqlite3",
|
47
|
-
}
|
48
|
-
|
49
|
-
Dir.mktmpdir do |dir|
|
50
|
-
plugin_path = File.join(dir, plugin_name)
|
51
|
-
generated_dummy_path = File.join(plugin_path, "test/dummy")
|
52
|
-
|
53
|
-
invoke(Rails::Generators::PluginGenerator, [plugin_path], opts)
|
54
|
-
|
55
|
-
inside(generated_dummy_path) do
|
56
|
-
remove_file(".ruby-version")
|
57
|
-
end
|
58
|
-
|
59
|
-
FileUtils.rm_rf(dummy_path)
|
60
|
-
FileUtils.mv(generated_dummy_path, dummy_path)
|
61
|
-
end
|
62
|
-
end
|
63
|
-
|
64
|
-
def delete_unnecessary_files
|
65
|
-
inside(dummy_path) do
|
66
|
-
remove_file("app/assets/javascripts/cable.js")
|
67
|
-
remove_file("app/channels/")
|
68
|
-
remove_file("public/apple-touch-icon-precomposed.png")
|
69
|
-
remove_file("public/apple-touch-icon.png")
|
70
|
-
end
|
71
|
-
end
|
72
|
-
|
73
|
-
private
|
74
|
-
|
75
|
-
def dummy_path
|
76
|
-
@dummy_path ||= File.expand_path(options[:destination], destination_root)
|
77
|
-
end
|
78
|
-
|
79
|
-
def plugin_name
|
80
|
-
@plugin_name ||=
|
81
|
-
begin
|
82
|
-
filename = Dir.glob("*.gemspec").first
|
83
|
-
|
84
|
-
if filename.present?
|
85
|
-
File.basename(filename, ".gemspec")
|
86
|
-
else
|
87
|
-
""
|
88
|
-
end
|
89
|
-
end
|
90
|
-
end
|
91
|
-
end
|
92
|
-
|
93
|
-
SuperDummyGenerator.start
|