rails_plan 0.0.2 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/rails_plan/version.rb +1 -1
- data/lib/rails_plan.rb +19 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2514de50b22779a293ad4455071eb682e829d7343658ec508b6042617fca276b
|
4
|
+
data.tar.gz: b7ba5905351dfcb7341c356c51f2fbf6e82957dcba3d2aee165a78db05ef8933
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9f3a6ae5c736b3b6345760dbee23be420b360798962bade77fde65d349f45b6c06fa0589c0adc47b0646285d2cb2056b55d76e0eba7a2994b3ee288179079157
|
7
|
+
data.tar.gz: 6f3d97472e4f309079bde3f40d760e344adfc174f75ea1264caaafe04d4c7ce82d516e2985a254151881cc61411f028951034df83f6245dee274a1fbb5894f8b
|
data/lib/rails_plan/version.rb
CHANGED
data/lib/rails_plan.rb
CHANGED
@@ -19,15 +19,22 @@ module RailsPlan
|
|
19
19
|
::RailsPlan::GemVersion.validate!
|
20
20
|
|
21
21
|
verify_rails_installation
|
22
|
+
|
22
23
|
generate_project(template)
|
23
24
|
generate_files(template['files'])
|
24
|
-
run_commands(template['
|
25
|
+
run_commands(template['before_commands'])
|
25
26
|
clone_files(template['clones'])
|
26
27
|
inject_code(template['inject_code'])
|
27
28
|
append_code(template['append_code'])
|
28
29
|
update_files(template['gsub'])
|
29
30
|
|
30
|
-
|
31
|
+
template['steps'].each do |step|
|
32
|
+
puts step['title'] if step['title']
|
33
|
+
run_commands(step['before_commands'])
|
34
|
+
generate_files(step['files'])
|
35
|
+
prepend_to_file(step['prepend_code'])
|
36
|
+
run_commands(step['after_commands'])
|
37
|
+
end
|
31
38
|
end
|
32
39
|
|
33
40
|
private
|
@@ -70,6 +77,16 @@ module RailsPlan
|
|
70
77
|
end
|
71
78
|
end
|
72
79
|
|
80
|
+
def prepend_to_file(injections)
|
81
|
+
return if injections.nil? || injections.empty?
|
82
|
+
|
83
|
+
thor_app = ::RailsPlan::RailsApp.new
|
84
|
+
|
85
|
+
injections.each do |injection|
|
86
|
+
thor_app.insert_into_file(injection['file_path'], injection['content'], after: injection['after'])
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
73
90
|
def append_code(appends)
|
74
91
|
return if appends.nil? || appends.empty?
|
75
92
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails_plan
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Paweł Dąbrowski
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-06-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rest-client
|