ack_rocket_cms 0.9.1.1 → 0.9.1.2
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/Gemfile.lock +1 -1
- data/lib/rocket_cms/version.rb +1 -1
- data/template.rb +12 -12
- 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: 6d21f78066231f070ae08dd523127ff3abd915d0
|
|
4
|
+
data.tar.gz: 59a8c67e50ea735966622c7fc3d76d1302207774
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b1e037141b4c47f1817f2edd50c454c7acc27aca804591dae7a926865d8f19cbd72a216550bba71d89f1c2c6163ce470ccbaec50dd198911f7a9095986db29bb
|
|
7
|
+
data.tar.gz: 1a085673eadba664daa8361776728731963322076d45fc44fe179439bd3da7fca3d41574dd80190281e427e3c9a8e81ef9f690ef6be3799b7ae29943df9e0655
|
data/Gemfile.lock
CHANGED
data/lib/rocket_cms/version.rb
CHANGED
data/template.rb
CHANGED
|
@@ -57,7 +57,7 @@ group :development do
|
|
|
57
57
|
gem 'favicon_maker', '0.3'
|
|
58
58
|
gem 'favicon_maker_rails'
|
|
59
59
|
|
|
60
|
-
gem '
|
|
60
|
+
gem 'ail_preview', '~> 0.2.29'
|
|
61
61
|
end
|
|
62
62
|
|
|
63
63
|
group :test do
|
|
@@ -107,17 +107,6 @@ end
|
|
|
107
107
|
|
|
108
108
|
create_file 'extra/.gitkeep', ''
|
|
109
109
|
|
|
110
|
-
generate 'rails_email_preview:install'
|
|
111
|
-
remove_file 'app/mailer_previews/contact_mailer_preview.rb'
|
|
112
|
-
create_file 'app/mailer_previews/contact_mailer_preview.rb' do <<-TEXT
|
|
113
|
-
class ContactMailerPreview
|
|
114
|
-
def new_message_email
|
|
115
|
-
ContactMailer.new_message_email(ContactMessage.all.to_a.sample)
|
|
116
|
-
end
|
|
117
|
-
end
|
|
118
|
-
TEXT
|
|
119
|
-
end
|
|
120
|
-
|
|
121
110
|
if mongoid
|
|
122
111
|
remove_file 'config/initializers/embedded_findable.rb'
|
|
123
112
|
create_file 'config/initializers/embedded_findable.rb' do <<-TEXT
|
|
@@ -224,6 +213,17 @@ create_file '.ruby-gemset', "#{app_name}\n"
|
|
|
224
213
|
|
|
225
214
|
run 'bundle install --without production'
|
|
226
215
|
|
|
216
|
+
generate 'rails_email_preview:install'
|
|
217
|
+
remove_file 'app/mailer_previews/contact_mailer_preview.rb'
|
|
218
|
+
create_file 'app/mailer_previews/contact_mailer_preview.rb' do <<-TEXT
|
|
219
|
+
class ContactMailerPreview
|
|
220
|
+
def new_message_email
|
|
221
|
+
ContactMailer.new_message_email(ContactMessage.all.to_a.sample)
|
|
222
|
+
end
|
|
223
|
+
end
|
|
224
|
+
TEXT
|
|
225
|
+
end
|
|
226
|
+
|
|
227
227
|
|
|
228
228
|
if mongoid
|
|
229
229
|
create_file 'config/mongoid.yml' do <<-TEXT
|