generic_app 3.0.12 → 3.0.13
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/generic_app/version.rb +1 -1
- data/lib/generic_app.rb +27 -1
- 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: 6d5d94925da349986f3cad8cf7725b0ccebea8bf2e41c6997a794824f1f94c68
|
4
|
+
data.tar.gz: 29aeabae855c64440beb0c6edf291b849ecef7a783f7a6d8a41f5bc46b76e40c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5a195ea04893758908c873c458a19117f83b06f97bac0c53c65f05df35a449c766882b4175586858f2a64b02e04b331121fd3e1e10c409f9da97e09bc5785a57
|
7
|
+
data.tar.gz: 51534cf3c038324f9aeacd4217bdb100af0f43c35e13db3e00a7749420c12051fadbcc3783fad9420f4e2254183a4484dbca05f227623961c36c541000db129b
|
data/lib/generic_app/version.rb
CHANGED
data/lib/generic_app.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
URL_TEMPLATE = 'https://github.com/jhsu802701/rails-
|
1
|
+
URL_TEMPLATE = 'https://github.com/jhsu802701/rails-20180126-180222-775.git'.freeze
|
2
2
|
|
3
3
|
require 'generic_app/version'
|
4
4
|
require 'string_in_file'
|
@@ -73,6 +73,32 @@ module GenericApp
|
|
73
73
|
array_files << "#{subdir_name}/test/helpers/application_helper_test.rb"
|
74
74
|
array_files << "#{subdir_name}/test/integration/static_pages_test.rb"
|
75
75
|
|
76
|
+
array_files << "#{subdir_name}/app/views/admins/mailer/confirmation_instructions.html.erb"
|
77
|
+
array_files << "#{subdir_name}/app/views/admins/mailer/email_changed.html.erb"
|
78
|
+
array_files << "#{subdir_name}/app/views/admins/mailer/unlock_instructions.html.erb"
|
79
|
+
array_files << "#{subdir_name}/app/views/admins/mailer/reset_password_instructions.html.erb"
|
80
|
+
array_files << "#{subdir_name}/app/views/admins/mailer/password_change.html.erb"
|
81
|
+
|
82
|
+
array_files << "#{subdir_name}/app/views/users/mailer/confirmation_instructions.html.erb"
|
83
|
+
array_files << "#{subdir_name}/app/views/users/mailer/email_changed.html.erb"
|
84
|
+
array_files << "#{subdir_name}/app/views/users/mailer/unlock_instructions.html.erb"
|
85
|
+
array_files << "#{subdir_name}/app/views/users/mailer/reset_password_instructions.html.erb"
|
86
|
+
array_files << "#{subdir_name}/app/views/users/mailer/password_change.html.erb"
|
87
|
+
|
88
|
+
array_files << "#{subdir_name}/config/locales/devise.en.yml"
|
89
|
+
|
90
|
+
array_files << "#{subdir_name}/test/integration/user_resend_conf_test.rb"
|
91
|
+
array_files << "#{subdir_name}/test/integration/user_password_reset_test.rb"
|
92
|
+
array_files << "#{subdir_name}/test/integration/user_login_test.rb"
|
93
|
+
array_files << "#{subdir_name}/test/integration/user_lock_test.rb"
|
94
|
+
array_files << "#{subdir_name}/test/integration/user_edit_test.rb"
|
95
|
+
|
96
|
+
array_files << "#{subdir_name}/test/integration/admin_resend_conf_test.rb"
|
97
|
+
array_files << "#{subdir_name}/test/integration/admin_password_reset_test.rb"
|
98
|
+
array_files << "#{subdir_name}/test/integration/admin_lock_test.rb"
|
99
|
+
array_files << "#{subdir_name}/test/integration/admin_edit_test.rb"
|
100
|
+
|
101
|
+
|
76
102
|
array_files.each do |f|
|
77
103
|
StringInFile.replace('Generic App Template', title, f)
|
78
104
|
StringInFile.replace('GENERIC APP TEMPLATE', title, f)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: generic_app
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jason Hsu
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-01-
|
11
|
+
date: 2018-01-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|