trusty-cms 4.1.2 → 4.1.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (152) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +3 -3
  3. data/Gemfile.lock +104 -104
  4. data/README.md +1 -1
  5. data/Rakefile +7 -7
  6. data/app/assets/javascripts/admin/assets.js +1 -1
  7. data/app/assets/javascripts/rad_social/rad_ajax_form.js +3 -0
  8. data/app/assets/javascripts/rad_social/rad_email.js +0 -1
  9. data/app/assets/javascripts/rad_social/rad_email_form.js +2 -7
  10. data/app/assets/stylesheets/admin/partials/_content.scss +1 -2
  11. data/app/assets/stylesheets/rad_social/rad_screen.scss +0 -4
  12. data/app/controllers/admin/assets_controller.rb +22 -21
  13. data/app/controllers/admin/configuration_controller.rb +9 -11
  14. data/app/controllers/admin/extensions_controller.rb +3 -3
  15. data/app/controllers/admin/layouts_controller.rb +3 -4
  16. data/app/controllers/admin/page_attachments_controller.rb +5 -5
  17. data/app/controllers/admin/page_fields_controller.rb +3 -4
  18. data/app/controllers/admin/page_parts_controller.rb +4 -5
  19. data/app/controllers/admin/pages_controller.rb +55 -56
  20. data/app/controllers/admin/references_controller.rb +1 -1
  21. data/app/controllers/admin/resource_controller.rb +132 -130
  22. data/app/controllers/admin/sites_controller.rb +4 -4
  23. data/app/controllers/admin/snippets_controller.rb +3 -4
  24. data/app/controllers/admin/users_controller.rb +16 -16
  25. data/app/controllers/application_controller.rb +47 -48
  26. data/app/controllers/site_controller.rb +51 -48
  27. data/app/controllers/social_mailer_controller.rb +12 -22
  28. data/app/helpers/admin/configuration_helper.rb +19 -20
  29. data/app/helpers/admin/layouts_helper.rb +0 -1
  30. data/app/helpers/admin/node_helper.rb +27 -24
  31. data/app/helpers/admin/pages_helper.rb +2 -2
  32. data/app/helpers/admin/preferences_helper.rb +0 -1
  33. data/app/helpers/admin/references_helper.rb +9 -10
  34. data/app/helpers/admin/regions_helper.rb +3 -3
  35. data/app/helpers/application_helper.rb +32 -33
  36. data/app/helpers/rad_social_helper.rb +8 -11
  37. data/app/helpers/scoped_helper.rb +1 -3
  38. data/app/helpers/sites_helper.rb +4 -4
  39. data/app/mailers/devise_mailer.rb +3 -4
  40. data/app/mailers/rad_social_mailer.rb +8 -8
  41. data/app/models/asset.rb +62 -63
  42. data/app/models/asset_type.rb +38 -39
  43. data/app/models/deprecated_tags.rb +3 -4
  44. data/app/models/file_not_found_page.rb +1 -3
  45. data/app/models/haml_filter.rb +1 -1
  46. data/app/models/layout.rb +4 -5
  47. data/app/models/legacy_user.rb +2 -2
  48. data/app/models/menu_renderer.rb +16 -18
  49. data/app/models/page.rb +96 -93
  50. data/app/models/page_attachment.rb +1 -2
  51. data/app/models/page_context.rb +11 -12
  52. data/app/models/page_part.rb +3 -4
  53. data/app/models/rails_page.rb +10 -12
  54. data/app/models/site.rb +22 -21
  55. data/app/models/snippet.rb +6 -8
  56. data/app/models/snippet_finder.rb +3 -3
  57. data/app/models/snippet_tags.rb +4 -4
  58. data/app/models/standard_tags.rb +258 -252
  59. data/app/models/status.rb +8 -8
  60. data/app/models/trusty_cms/config.rb +25 -25
  61. data/app/models/trusty_cms/page_response_cache_director.rb +2 -3
  62. data/app/models/user.rb +15 -14
  63. data/app/models/user_action_observer.rb +3 -3
  64. data/app/views/admin/assets/edit.html.haml +3 -0
  65. data/app/views/rad_social_mailer/social_mail_form.html.haml +1 -3
  66. data/app/views/widget/_email_form.html.haml +0 -5
  67. data/bin/rails +4 -4
  68. data/bin/trusty_cms +3 -5
  69. data/config.ru +1 -1
  70. data/config/application.rb +14 -15
  71. data/config/boot.rb +1 -2
  72. data/config/environment.rb +1 -1
  73. data/config/environments/production.rb +0 -1
  74. data/config/environments/test.rb +1 -2
  75. data/config/initializers/devise.rb +1 -1
  76. data/config/initializers/kraken.rb +2 -2
  77. data/config/initializers/tmp.rb +1 -1
  78. data/config/initializers/trusty_cms_config.rb +48 -48
  79. data/config/locales/en.yml +1 -0
  80. data/config/routes.rb +6 -6
  81. data/lib/active_record_extensions/active_record_extensions.rb +1 -2
  82. data/lib/annotatable.rb +3 -5
  83. data/lib/configuration_extensions/configuration_extensions.rb +1 -1
  84. data/lib/inheritable_class_attributes.rb +13 -9
  85. data/lib/login_system.rb +73 -73
  86. data/lib/method_observer.rb +13 -12
  87. data/lib/ostruct.rb +7 -10
  88. data/lib/simpleton.rb +0 -4
  89. data/lib/string_extensions/string_extensions.rb +3 -3
  90. data/lib/symbol_extensions/symbol_extensions.rb +1 -1
  91. data/lib/tasks/database.rake +28 -28
  92. data/lib/tasks/extensions.rake +18 -18
  93. data/lib/tasks/framework.rake +68 -68
  94. data/lib/tasks/radiant_config.rake +4 -4
  95. data/lib/tasks/snippets_extension_tasks.rake +11 -11
  96. data/lib/tasks/translate.rake +14 -14
  97. data/lib/tasks/upgrade_to_devise.rake +1 -1
  98. data/lib/translation_support.rb +22 -22
  99. data/lib/trusty_cms.rb +2 -2
  100. data/lib/trusty_cms/admin_ui.rb +19 -16
  101. data/lib/trusty_cms/admin_ui/region_partials.rb +4 -3
  102. data/lib/trusty_cms/admin_ui/region_set.rb +4 -5
  103. data/lib/trusty_cms/available_locales.rb +2 -4
  104. data/lib/trusty_cms/config/definition.rb +11 -8
  105. data/lib/trusty_cms/engine.rb +13 -14
  106. data/lib/trusty_cms/extension.rb +14 -16
  107. data/lib/trusty_cms/extension_loader.rb +6 -6
  108. data/lib/trusty_cms/extension_migrator.rb +42 -41
  109. data/lib/trusty_cms/extension_path.rb +20 -19
  110. data/lib/trusty_cms/initializer.rb +5 -8
  111. data/lib/trusty_cms/pagination/controller.rb +7 -10
  112. data/lib/trusty_cms/pagination/link_renderer.rb +2 -2
  113. data/lib/trusty_cms/resource_responses.rb +3 -3
  114. data/lib/trusty_cms/setup.rb +130 -132
  115. data/lib/trusty_cms/taggable.rb +19 -22
  116. data/lib/trusty_cms/task_support.rb +9 -6
  117. data/public/dispatch.fcgi +1 -1
  118. data/public/dispatch.rb +2 -2
  119. data/script/extension +1 -1
  120. data/script/rails +2 -2
  121. data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/core.js +126 -0
  122. data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/failsafe/index.js +4 -0
  123. data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/failsafe/map.js +56 -0
  124. data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/failsafe/seq.js +43 -0
  125. data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/failsafe/string.js +28 -0
  126. data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/index.js +36 -0
  127. data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/json.js +76 -0
  128. data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/options.js +23 -0
  129. data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/yaml-1.1/binary.js +87 -0
  130. data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/yaml-1.1/index.js +157 -0
  131. data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/yaml-1.1/omap.js +142 -0
  132. data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/yaml-1.1/pairs.js +81 -0
  133. data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/yaml-1.1/set.js +114 -0
  134. data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/yaml-1.1/timestamp.js +97 -0
  135. data/spec/spec/dummy/node_modules/yaml/dist/tags/core.js +114 -0
  136. data/spec/spec/dummy/node_modules/yaml/dist/tags/failsafe/index.js +17 -0
  137. data/spec/spec/dummy/node_modules/yaml/dist/tags/failsafe/map.js +37 -0
  138. data/spec/spec/dummy/node_modules/yaml/dist/tags/failsafe/seq.js +34 -0
  139. data/spec/spec/dummy/node_modules/yaml/dist/tags/failsafe/string.js +40 -0
  140. data/spec/spec/dummy/node_modules/yaml/dist/tags/index.js +62 -0
  141. data/spec/spec/dummy/node_modules/yaml/dist/tags/json.js +60 -0
  142. data/spec/spec/dummy/node_modules/yaml/dist/tags/options.js +35 -0
  143. data/spec/spec/dummy/node_modules/yaml/dist/tags/yaml-1.1/binary.js +97 -0
  144. data/spec/spec/dummy/node_modules/yaml/dist/tags/yaml-1.1/index.js +131 -0
  145. data/spec/spec/dummy/node_modules/yaml/dist/tags/yaml-1.1/omap.js +105 -0
  146. data/spec/spec/dummy/node_modules/yaml/dist/tags/yaml-1.1/pairs.js +80 -0
  147. data/spec/spec/dummy/node_modules/yaml/dist/tags/yaml-1.1/set.js +91 -0
  148. data/spec/spec/dummy/node_modules/yaml/dist/tags/yaml-1.1/timestamp.js +93 -0
  149. data/trusty_cms.gemspec +24 -24
  150. data/yarn.lock +3 -3
  151. metadata +7602 -103
  152. data/app/assets/javascripts/rad_social/captcha.js +0 -42
@@ -3,7 +3,8 @@ class Status
3
3
 
4
4
  def initialize(options = {})
5
5
  options = options.symbolize_keys
6
- @id, @name = options[:id], options[:name]
6
+ @id = options[:id]
7
+ @name = options[:name]
7
8
  end
8
9
 
9
10
  def symbol
@@ -27,15 +28,14 @@ class Status
27
28
  end
28
29
 
29
30
  def self.selectable_values
30
- self.selectable.map(&:name)
31
+ selectable.map(&:name)
31
32
  end
32
33
 
33
34
  @@statuses = [
34
- Status.new(:id => 1, :name => 'Draft' ),
35
- Status.new(:id => 50, :name => 'Reviewed' ),
36
- Status.new(:id => 90, :name => 'Scheduled'),
37
- Status.new(:id => 100, :name => 'Published'),
38
- Status.new(:id => 101, :name => 'Hidden' )
35
+ Status.new(id: 1, name: 'Draft'),
36
+ Status.new(id: 50, name: 'Reviewed'),
37
+ Status.new(id: 90, name: 'Scheduled'),
38
+ Status.new(id: 100, name: 'Published'),
39
+ Status.new(id: 101, name: 'Hidden'),
39
40
  ]
40
-
41
41
  end
@@ -1,5 +1,4 @@
1
1
  module TrustyCms
2
-
3
2
  class << self
4
3
  def config_definitions
5
4
  @config_definitions ||= {}
@@ -67,7 +66,7 @@ module TrustyCms
67
66
  # edit_setting('admin.name)
68
67
  #
69
68
 
70
- self.table_name = "config"
69
+ self.table_name = 'config'
71
70
  after_save :update_cache
72
71
  attr_reader :definition
73
72
 
@@ -105,12 +104,12 @@ module TrustyCms
105
104
  end
106
105
 
107
106
  def to_hash
108
- Hash[ *all.map { |pair| [pair.key, pair.value] }.flatten ]
107
+ Hash[*all.map { |pair| [pair.key, pair.value] }.flatten]
109
108
  end
110
109
 
111
110
  def initialize_cache
112
111
  TrustyCms::Config.ensure_cache_file
113
- Rails.cache.write('TrustyCms::Config',TrustyCms::Config.to_hash)
112
+ Rails.cache.write('TrustyCms::Config', TrustyCms::Config.to_hash)
114
113
  Rails.cache.write('TrustyCms.cache_mtime', File.mtime(cache_file))
115
114
  Rails.cache.silence!
116
115
  end
@@ -121,6 +120,7 @@ module TrustyCms
121
120
 
122
121
  def stale_cache?
123
122
  return true unless TrustyCms::Config.cache_file_exists?
123
+
124
124
  Rails.cache.read('TrustyCms.cache_mtime') != File.mtime(cache_file)
125
125
  end
126
126
 
@@ -134,15 +134,15 @@ module TrustyCms
134
134
  end
135
135
 
136
136
  def cache_file
137
- File.join(cache_path,'trusty_config_cache.txt')
137
+ File.join(cache_path, 'trusty_config_cache.txt')
138
138
  end
139
139
 
140
140
  def site_settings
141
- @site_settings ||= %w{ site.title site.host dev.host local.timezone }
141
+ @site_settings ||= %w{site.title site.host dev.host local.timezone}
142
142
  end
143
143
 
144
144
  def default_settings
145
- @default_settings ||= %w{ defaults.locale defaults.page.filter defaults.page.parts defaults.page.fields defaults.page.status }
145
+ @default_settings ||= %w{defaults.locale defaults.page.filter defaults.page.parts defaults.page.fields defaults.page.status}
146
146
  end
147
147
 
148
148
  def user_settings
@@ -161,7 +161,7 @@ module TrustyCms
161
161
  #
162
162
  def namespace(prefix, options = {}, &block)
163
163
  prefix = [options[:prefix], prefix].join('.') if options[:prefix]
164
- with_options(options.merge(:prefix => prefix), &block)
164
+ with_options(options.merge(prefix: prefix), &block)
165
165
  end
166
166
 
167
167
  # Declares a setting definition that will constrain and support the use of a particular config entry.
@@ -176,7 +176,7 @@ module TrustyCms
176
176
  # * :allow_blank should be false if the config item must not be blank or nil
177
177
  # * :allow_change should be false if the config item can only be set, not changed. Add a default to specify an unchanging config entry.
178
178
  # * :allow_display should be false if the config item should not be showable in radius tags
179
- #
179
+ #
180
180
  # TrustyCms.config do |config|
181
181
  # config.define 'defaults.locale', :select_from => lambda { TrustyCms::AvailableLocales.locales }, :allow_blank => true
182
182
  # config.define 'defaults.page.parts', :default => "Body,Extended"
@@ -191,7 +191,7 @@ module TrustyCms
191
191
  #
192
192
  # but at the moment that's only done in testing.
193
193
  #
194
- def define(key, options={})
194
+ def define(key, options = {})
195
195
  called_from = caller.grep(/\/initializers\//).first
196
196
  if options.is_a? TrustyCms::Config::Definition
197
197
  definition = options
@@ -199,7 +199,7 @@ module TrustyCms
199
199
  key = [options[:prefix], key].join('.') if options[:prefix]
200
200
  end
201
201
 
202
- definition ||= TrustyCms::Config::Definition.new(options.merge(:definer => called_from))
202
+ definition ||= TrustyCms::Config::Definition.new(options.merge(definer: called_from))
203
203
  definitions[key] = definition
204
204
 
205
205
  if self[key].nil? && !definition.default.nil?
@@ -216,9 +216,8 @@ module TrustyCms
216
216
  end
217
217
 
218
218
  def definition_for(key)
219
- definitions[key] ||= TrustyCms::Config::Definition.new(:empty => true)
219
+ definitions[key] ||= TrustyCms::Config::Definition.new(empty: true)
220
220
  end
221
-
222
221
  end
223
222
 
224
223
  # The usual way to use a config item:
@@ -236,13 +235,14 @@ module TrustyCms
236
235
  def value=(param)
237
236
  newvalue = param.to_s
238
237
  if newvalue != self[:value]
239
- raise ConfigError, "#{self.key} cannot be changed" unless settable? || self[:value].blank?
240
- if boolean?
241
- self[:value] = (newvalue == "1" || newvalue == "true") ? "true" : "false"
242
- else
243
- self[:value] = newvalue
244
- end
245
- self.save!
238
+ raise ConfigError, "#{key} cannot be changed" unless settable? || self[:value].blank?
239
+
240
+ self[:value] = if boolean?
241
+ newvalue == '1' || newvalue == 'true' ? 'true' : 'false'
242
+ else
243
+ newvalue
244
+ end
245
+ save!
246
246
  end
247
247
  self[:value]
248
248
  end
@@ -270,20 +270,21 @@ module TrustyCms
270
270
  # that does not restrict use.
271
271
  #
272
272
  def definition
273
- @definition ||= self.class.definition_for(self.key)
273
+ @definition ||= self.class.definition_for(key)
274
274
  end
275
275
 
276
276
  # Returns true if the item key ends with '?' or the definition specifies :type => :boolean.
277
277
  #
278
278
  def boolean?
279
- definition.boolean? || self.key.ends_with?("?")
279
+ definition.boolean? || key.ends_with?('?')
280
280
  end
281
281
 
282
282
  # Returns true if the item is boolean and true.
283
283
  #
284
284
  def checked?
285
285
  return nil if self[:value].nil?
286
- boolean? && self[:value] == "true"
286
+
287
+ boolean? && self[:value] == 'true'
287
288
  end
288
289
 
289
290
  # Returns true if the item defintion includes a :select_from parameter that limits the range of permissible options.
@@ -302,11 +303,10 @@ module TrustyCms
302
303
  TrustyCms::Config.initialize_cache
303
304
  end
304
305
 
305
- delegate :default, :type, :allow_blank?, :hidden?, :visible?, :settable?, :selection, :notes, :units, :to => :definition
306
+ delegate :default, :type, :allow_blank?, :hidden?, :visible?, :settable?, :selection, :notes, :units, to: :definition
306
307
 
307
308
  def validate
308
309
  definition.validate(self)
309
310
  end
310
-
311
311
  end
312
312
  end
@@ -22,7 +22,7 @@ module TrustyCms
22
22
  private
23
23
 
24
24
  def non_cacheable_response
25
- @listener.set_expiry nil, :private => true, "no-cache" => true
25
+ @listener.set_expiry nil, :private => true, 'no-cache' => true
26
26
  @listener.set_etag('')
27
27
  end
28
28
 
@@ -32,12 +32,11 @@ module TrustyCms
32
32
  timeout = @page.cache_timeout
33
33
  end
34
34
 
35
- @listener.set_expiry timeout, :public => true, :private => false
35
+ @listener.set_expiry timeout, public: true, private: false
36
36
  end
37
37
 
38
38
  def cacheable?
39
39
  @listener.cacheable_request? && @page.cache?
40
40
  end
41
-
42
41
  end
43
42
  end
@@ -1,10 +1,10 @@
1
1
  class User < ActiveRecord::Base
2
- has_many :pages, :foreign_key => :created_by_id
2
+ has_many :pages, foreign_key: :created_by_id
3
3
  self.table_name = 'admins'
4
4
 
5
5
  # :confirmable, :lockable, :timeoutable and :omniauthable
6
6
  devise :database_authenticatable, :registerable,
7
- :recoverable, :rememberable, :trackable, :validatable
7
+ :recoverable, :rememberable, :trackable, :validatable
8
8
 
9
9
  alias_attribute :created_by_id, :id
10
10
 
@@ -13,53 +13,54 @@ class User < ActiveRecord::Base
13
13
  validate :password_complexity
14
14
 
15
15
  # Default Order
16
- default_scope {order('last_name')}
16
+ default_scope { order('last_name') }
17
17
 
18
18
  # Associations
19
- belongs_to :created_by, :class_name => 'User'
20
- belongs_to :updated_by, :class_name => 'User'
19
+ belongs_to :created_by, class_name: 'User'
20
+ belongs_to :updated_by, class_name: 'User'
21
21
 
22
22
  def has_role?(role)
23
23
  case role
24
24
  when :admin
25
- self.admin?
25
+ admin?
26
26
  when :designer
27
- self.designer?
27
+ designer?
28
28
  when :content_editor
29
- self.content_editor?
29
+ content_editor?
30
30
  else
31
31
  false
32
32
  end
33
33
  end
34
34
 
35
35
  def admin?
36
- self.admin
36
+ admin
37
37
  end
38
38
 
39
39
  def designer?
40
- self.designer
40
+ designer
41
41
  end
42
42
 
43
43
  def content_editor?
44
- self.content_editor
44
+ content_editor
45
45
  end
46
46
 
47
- def locale
47
+ def locale
48
48
  'en'
49
49
  end
50
50
 
51
51
  def name
52
- "#{self.first_name} #{self.last_name}"
52
+ "#{first_name} #{last_name}"
53
53
  end
54
54
 
55
55
  def password_required?
56
56
  return false if skip_password_validation
57
+
57
58
  super
58
59
  end
59
60
 
60
61
  def password_complexity
61
62
  return false if password.blank? || password =~ /^(?=.*?[A-Z])(?=.*?[a-z])(?=.*?[0-9])(?=.*?[#?!@$%^&*-]).{8,70}$/
63
+
62
64
  errors.add :password, 'Complexity requirement not met. Length should be 12 characters and include: 1 uppercase, 1 lowercase, 1 digit and 1 special character.'
63
65
  end
64
-
65
66
  end
@@ -4,7 +4,7 @@ class UserActionObserver < ActiveRecord::Observer
4
4
  def current_user=(user)
5
5
  self.class.current_user = user
6
6
  end
7
-
7
+
8
8
  def self.current_user=(user)
9
9
  Thread.current[:current_user] = user
10
10
  end
@@ -18,10 +18,10 @@ class UserActionObserver < ActiveRecord::Observer
18
18
  end
19
19
 
20
20
  def before_create(model)
21
- #model.created_by = self.current_user
21
+ # model.created_by = self.current_user
22
22
  end
23
23
 
24
24
  def before_update(model)
25
- #model.updated_by = self.current_user
25
+ # model.updated_by = self.current_user
26
26
  end
27
27
  end
@@ -14,6 +14,9 @@
14
14
  %fieldset
15
15
  %label.filename
16
16
  = "#{t("clipped_extension.filename")}: #{@asset.asset_file_name unless @asset.new_record?}"
17
+ %br
18
+ %label.url
19
+ = "#{t("clipped_extension.asset_url")}: #{image_path @asset.thumbnail unless @asset.new_record?}"
17
20
  %p.asset
18
21
  - display_size = TrustyCms::config['assets.display_size'] || 'normal'
19
22
  = image_tag @asset.thumbnail(display_size.to_sym), :class => 'preview'
@@ -1,6 +1,6 @@
1
1
  = stylesheet_link_tag('rad_social/rad_screen')
2
- = javascript_include_tag('https://www.google.com/recaptcha/api/js/recaptcha_ajax.js')
3
2
  = javascript_include_tag('rad_social/rad_email')
3
+ = csrf_meta_tags
4
4
 
5
5
  .rad-dialog-titlebar
6
6
  %span.rad-dialog-title
@@ -31,8 +31,6 @@
31
31
  = email_message
32
32
  %input{:type=>'hidden', :name=>'subject', :value=> email_subject}
33
33
  %input{:type=>'hidden', :id=>'rs-base-message', :value=> email_message}
34
- #recaptcha-container.captcha-container
35
- = recaptcha_v3 action: 'emailSeats'
36
34
  %input{:type=>'hidden', :name=>'submit_url', :value=> email_action_url}
37
35
  %input.button.primary-button{:id => 'rad_email_submit', :type=>:button ,:value=>'Submit'}
38
36
  .loader
@@ -1,5 +1,3 @@
1
- - javascript('rad_social/captcha')
2
-
3
1
  = form_tag
4
2
  %form{:id=>'rad_social_email_form', :class=>'rad-email-form'}
5
3
  %label{:for => 'from'}
@@ -20,6 +18,3 @@
20
18
  %input{:type=>'hidden', :name=>'submit_url', :value=>'contact/email'}
21
19
  %input.button.primary-button{:id => 'email_submit', :type=>:button ,:value=>'Submit'}
22
20
  .loader
23
-
24
- #recaptcha-container.captcha-container
25
- = recaptcha_v3 action: 'emailSeats'
data/bin/rails CHANGED
@@ -2,12 +2,12 @@
2
2
  # This command will automatically be run when you run "rails" with Rails gems
3
3
  # installed from the root of your application.
4
4
 
5
- ENGINE_ROOT = File.expand_path('../..', __FILE__)
6
- ENGINE_PATH = File.expand_path('../../lib/trusty/cms/engine', __FILE__)
7
- APP_PATH = File.expand_path('../../test/dummy/config/application', __FILE__)
5
+ ENGINE_ROOT = File.expand_path('..', __dir__)
6
+ ENGINE_PATH = File.expand_path('../lib/trusty/cms/engine', __dir__)
7
+ APP_PATH = File.expand_path('../test/dummy/config/application', __dir__)
8
8
 
9
9
  # Set up gems listed in the Gemfile.
10
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
11
11
  require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
12
12
 
13
13
  require 'rails/all'
@@ -1,11 +1,11 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- ENV["RAILS_ENV"] ||= 'production'
3
+ ENV['RAILS_ENV'] ||= 'production'
4
4
 
5
5
  $LOAD_PATH << File.join(File.dirname(__FILE__), '..')
6
6
 
7
7
  require 'ruby_version_check'
8
- Signal.trap("INT") { puts; exit }
8
+ Signal.trap('INT') { puts; exit }
9
9
 
10
10
  require 'trusty_cms'
11
11
  if ARGV.any? { |arg| %w(--version -v).any? { |flag| arg == flag } }
@@ -19,7 +19,6 @@ require 'rails_generator'
19
19
  require 'rails_generator/scripts/generate'
20
20
 
21
21
  class Rails::Generator::Base
22
-
23
22
  def self.use_application_sources!
24
23
  reset_sources
25
24
  sources << Rails::Generator::PathSource.new(:builtin, "#{File.dirname(__FILE__)}/../lib/generators")
@@ -46,7 +45,6 @@ class Rails::Generator::Base
46
45
  end
47
46
  end
48
47
  end
49
-
50
48
  end
51
49
 
52
- Rails::Generators.invoke("trusty_cms", [ARGV])
50
+ Rails::Generators.invoke('trusty_cms', [ARGV])
data/config.ru CHANGED
@@ -1,4 +1,4 @@
1
1
  # This file is used by Rack-based servers to start the application.
2
2
 
3
- require ::File.expand_path('../config/environment', __FILE__)
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
4
  run TrustyCms::Application
@@ -1,4 +1,4 @@
1
- require File.expand_path('../boot', __FILE__)
1
+ require File.expand_path('boot', __dir__)
2
2
 
3
3
  require 'rails/all'
4
4
  require 'acts_as_tree'
@@ -10,9 +10,8 @@ require 'rack/cache'
10
10
  require 'trustygems'
11
11
  require 'devise'
12
12
 
13
-
14
13
  if defined?(Bundler)
15
- Bundler.require(*Rails.groups(:assets => %w(development test)))
14
+ Bundler.require(*Rails.groups(assets: %w(development test)))
16
15
  end
17
16
 
18
17
  module TrustyCms
@@ -30,12 +29,12 @@ module TrustyCms
30
29
 
31
30
  # Initialize extension paths
32
31
  config.initialize_extension_paths
33
- extension_loader = ExtensionLoader.instance {|l| l.initializer = self }
32
+ extension_loader = ExtensionLoader.instance { |l| l.initializer = self }
34
33
  extension_loader.paths(:load).reverse_each do |path|
35
34
  config.autoload_paths.unshift path
36
35
  $LOAD_PATH.unshift path
37
36
  end
38
- paths["app/helpers"] = []
37
+ paths['app/helpers'] = []
39
38
  # config.add_plugin_paths(extension_loader.paths(:plugin))
40
39
  trusty_locale_paths = Dir[File.join(TRUSTY_CMS_ROOT, 'config', 'locales', '*.{rb,yml}')]
41
40
  config.i18n.load_path = trusty_locale_paths + extension_loader.paths(:locale)
@@ -44,16 +43,16 @@ module TrustyCms
44
43
  config.encoding = 'utf-8'
45
44
 
46
45
  config.middleware.use Rack::Cache,
47
- :private_headers => ['Authorization'],
48
- :entitystore => "trusty:tmp/cache/entity",
49
- :metastore => "trusty:tmp/cache/meta",
50
- :verbose => false,
51
- :allow_reload => false,
52
- :allow_revalidate => false
46
+ private_headers: ['Authorization'],
47
+ entitystore: 'trusty:tmp/cache/entity',
48
+ metastore: 'trusty:tmp/cache/meta',
49
+ verbose: false,
50
+ allow_reload: false,
51
+ allow_revalidate: false
53
52
  config.middleware.insert_before(Rack::ConditionalGet, Rack::Cache)
54
53
  config.assets.enabled = true
55
54
 
56
- config.filter_parameters += [:password, :password_confirmation]
55
+ config.filter_parameters += %i[password password_confirmation]
57
56
 
58
57
  # Use the database for sessions instead of the cookie-based default,
59
58
  # which shouldn't be used to store highly confidential information
@@ -83,9 +82,9 @@ module TrustyCms
83
82
  extension_loader.load_extensions
84
83
  extension_loader.load_extension_initalizers
85
84
 
86
- extension_loader.activate_extensions # also calls initialize_views
87
- #config.add_controller_paths(extension_loader.paths(:controller))
88
- #config.add_eager_load_paths(extension_loader.paths(:eager_load))
85
+ extension_loader.activate_extensions # also calls initialize_views
86
+ # config.add_controller_paths(extension_loader.paths(:controller))
87
+ # config.add_eager_load_paths(extension_loader.paths(:eager_load))
89
88
 
90
89
  # Add new inflection rules using the following format:
91
90
  ActiveSupport::Inflector.inflections do |inflect|