inline_forms 1.3.18 → 1.3.19
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.
- data/bin/inline_forms +3 -7
- data/lib/inline_forms/version.rb +1 -1
- metadata +1 -1
data/bin/inline_forms
CHANGED
|
@@ -144,12 +144,8 @@ puts "Paper_trail install..."
|
|
|
144
144
|
system('bundle exec rails g paper_trail:install')
|
|
145
145
|
|
|
146
146
|
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
else
|
|
150
|
-
puts "Migrating Devise and Versions"
|
|
151
|
-
system('bundle exec rake db:migrate')
|
|
152
|
-
end
|
|
147
|
+
puts "Migrating Devise and Versions"
|
|
148
|
+
system('bundle exec rake db:migrate')
|
|
153
149
|
|
|
154
150
|
puts "Creating header in app/views/inline_forms/_header.html.erb...\n"
|
|
155
151
|
header_src = "
|
|
@@ -179,7 +175,7 @@ module ApplicationHelper
|
|
|
179
175
|
end
|
|
180
176
|
end
|
|
181
177
|
"
|
|
182
|
-
|
|
178
|
+
File.open( 'app/helpers/application_helper.rb', 'w') {|f| f.write(app_helper) }
|
|
183
179
|
|
|
184
180
|
|
|
185
181
|
#puts "Injecting precompile assets stuff in production.rb...\n"
|
data/lib/inline_forms/version.rb
CHANGED