activeadmin_blaze_theme 0.5.8 → 0.5.16
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.circleci/config.yml +33 -0
- data/.gitignore +12 -2
- data/.rspec +3 -0
- data/.rubocop.yml +27 -0
- data/Gemfile +2 -0
- data/README.md +61 -45
- data/Rakefile +2 -1
- data/activeadmin_blaze_theme.gemspec +22 -11
- data/app/assets/stylesheets/activeadmin_blaze_theme/theme.scss +76 -4
- data/bin/rails +29 -0
- data/bin/rake +29 -0
- data/bin/rspec +29 -0
- data/bin/rubocop +29 -0
- data/lib/activeadmin/views/activeadmin_form.rb +6 -2
- data/lib/activeadmin_blaze_theme.rb +5 -2
- data/lib/activeadmin_blaze_theme/version.rb +3 -1
- data/lib/formtastic/inputs/blaze_toggle_input.rb +12 -8
- data/spec/dummy/.ruby-version +1 -0
- data/spec/dummy/.tool-versions +1 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/admin/authors.rb +57 -0
- data/spec/dummy/app/admin/dashboard.rb +32 -0
- data/spec/dummy/app/admin/posts.rb +50 -0
- data/spec/dummy/app/admin/tags.rb +4 -0
- data/spec/dummy/app/assets/config/manifest.js +3 -0
- data/spec/dummy/app/assets/images/.keep +0 -0
- data/spec/dummy/app/assets/javascripts/active_admin.js +1 -0
- data/spec/dummy/app/assets/stylesheets/active_admin.scss +4 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/channels/application_cable/channel.rb +4 -0
- data/spec/dummy/app/channels/application_cable/connection.rb +4 -0
- data/spec/dummy/app/controllers/application_controller.rb +2 -0
- data/spec/dummy/app/controllers/concerns/.keep +0 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/javascript/packs/application.js +15 -0
- data/spec/dummy/app/jobs/application_job.rb +7 -0
- data/spec/dummy/app/mailers/application_mailer.rb +4 -0
- data/spec/dummy/app/models/application_record.rb +7 -0
- data/spec/dummy/app/models/author.rb +26 -0
- data/spec/dummy/app/models/concerns/.keep +0 -0
- data/spec/dummy/app/models/post.rb +25 -0
- data/spec/dummy/app/models/post_tag.rb +9 -0
- data/spec/dummy/app/models/profile.rb +9 -0
- data/spec/dummy/app/models/tag.rb +6 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
- data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/bin/setup +33 -0
- data/spec/dummy/config.ru +5 -0
- data/spec/dummy/config/application.rb +18 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/cable.yml +10 -0
- data/spec/dummy/config/database.yml +8 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +62 -0
- data/spec/dummy/config/environments/production.rb +112 -0
- data/spec/dummy/config/environments/test.rb +49 -0
- data/spec/dummy/config/initializers/active_admin.rb +335 -0
- data/spec/dummy/config/initializers/application_controller_renderer.rb +8 -0
- data/spec/dummy/config/initializers/assets.rb +12 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/content_security_policy.rb +28 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +5 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +4 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +33 -0
- data/spec/dummy/config/puma.rb +38 -0
- data/spec/dummy/config/routes.rb +3 -0
- data/spec/dummy/config/spring.rb +6 -0
- data/spec/dummy/config/storage.yml +7 -0
- data/spec/dummy/db/migrate/20170806125915_create_active_storage_tables.active_storage.rb +27 -0
- data/spec/dummy/db/migrate/20180101010101_create_active_admin_comments.rb +16 -0
- data/spec/dummy/db/migrate/20180607053251_create_authors.rb +13 -0
- data/spec/dummy/db/migrate/20180607053254_create_profiles.rb +12 -0
- data/spec/dummy/db/migrate/20180607053255_create_tags.rb +11 -0
- data/spec/dummy/db/migrate/20180607053257_create_post_tags.rb +12 -0
- data/spec/dummy/db/migrate/20180607053739_create_posts.rb +17 -0
- data/spec/dummy/db/schema.rb +99 -0
- data/spec/dummy/lib/assets/.keep +0 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
- data/spec/dummy/public/apple-touch-icon.png +0 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/rails_helper.rb +36 -0
- data/spec/spec_helper.rb +20 -0
- data/spec/support/capybara.rb +3 -0
- data/spec/support/drivers.rb +7 -0
- data/spec/system/theme_spec.rb +15 -0
- metadata +301 -11
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,36 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
ENV['RAILS_ENV'] = 'test'
|
6
|
+
|
7
|
+
require File.expand_path('dummy/config/environment.rb', __dir__)
|
8
|
+
|
9
|
+
abort('The Rails environment is running in production mode!') if Rails.env.production?
|
10
|
+
|
11
|
+
require 'rspec/rails'
|
12
|
+
require 'capybara/rails'
|
13
|
+
|
14
|
+
Dir[File.expand_path('support/**/*.rb', __dir__)].sort.each { |f| require f }
|
15
|
+
|
16
|
+
# Force deprecations to raise an exception.
|
17
|
+
ActiveSupport::Deprecation.behavior = :raise
|
18
|
+
|
19
|
+
# Checks for pending migrations and applies them before tests are run.
|
20
|
+
# If you are not using ActiveRecord, you can remove these lines.
|
21
|
+
begin
|
22
|
+
ActiveRecord::Migration.maintain_test_schema!
|
23
|
+
rescue ActiveRecord::PendingMigrationError => e
|
24
|
+
puts e.to_s.strip
|
25
|
+
exit 1
|
26
|
+
end
|
27
|
+
|
28
|
+
RSpec.configure do |config|
|
29
|
+
config.fixture_path = "#{::Rails.root}/spec/fixtures"
|
30
|
+
config.infer_spec_type_from_file_location!
|
31
|
+
config.filter_rails_from_backtrace!
|
32
|
+
|
33
|
+
config.use_transactional_fixtures = true
|
34
|
+
config.use_instantiated_fixtures = false
|
35
|
+
config.render_views = false
|
36
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
RSpec.configure do |config|
|
4
|
+
config.disable_monkey_patching!
|
5
|
+
config.filter_run focus: true
|
6
|
+
config.filter_run_excluding changes_filesystem: true
|
7
|
+
config.run_all_when_everything_filtered = true
|
8
|
+
config.color = true
|
9
|
+
config.order = :random
|
10
|
+
config.example_status_persistence_file_path = '.rspec_failures'
|
11
|
+
config.shared_context_metadata_behavior = :apply_to_host_groups
|
12
|
+
|
13
|
+
config.expect_with :rspec do |expectations|
|
14
|
+
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
15
|
+
end
|
16
|
+
|
17
|
+
config.mock_with :rspec do |mocks|
|
18
|
+
mocks.verify_partial_doubles = true
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
RSpec.describe 'Theme', type: :system do
|
4
|
+
it 'applies the theme styles' do
|
5
|
+
visit '/admin/posts'
|
6
|
+
|
7
|
+
expect(page).to have_css('body.active_admin', style: { 'font-size': '12px' })
|
8
|
+
expect(page).to have_css('body.active_admin a', text: /new post/i, style: { 'background-image': 'none' })
|
9
|
+
expect(page).to have_css('body.active_admin #header', style: { 'background-image': 'none' })
|
10
|
+
expect(page).to have_css('body.active_admin #title_bar', style: { 'box-shadow': 'none' })
|
11
|
+
expect(page).to have_css('body.active_admin #main_content', style: { 'padding': '25px 20px' })
|
12
|
+
expect(page).to have_css('body.active_admin #active_admin_content', style: { 'display': 'flex' })
|
13
|
+
expect(page).to have_css('body.active_admin #footer', style: { 'position': 'absolute' })
|
14
|
+
end
|
15
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activeadmin_blaze_theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.16
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mattia Roccoberton
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-10-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activeadmin
|
@@ -16,22 +16,155 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '2.0'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
26
|
+
version: '2.0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: activestorage
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 6.0.3.2
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 6.0.3.2
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: capybara
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 3.33.0
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 3.33.0
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: pry
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 0.13.1
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 0.13.1
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: puma
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 4.3.5
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 4.3.5
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rspec_junit_formatter
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 0.4.1
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 0.4.1
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rspec-rails
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 4.0.1
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 4.0.1
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: rubocop
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - "~>"
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: 0.90.0
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - "~>"
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: 0.90.0
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: selenium-webdriver
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - "~>"
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: 3.142.7
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - "~>"
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: 3.142.7
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: sqlite3
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - "~>"
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: 1.4.2
|
146
|
+
type: :development
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - "~>"
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: 1.4.2
|
27
153
|
description: An ActiveAdmin theme which use Blaze CSS UI toolkit
|
28
154
|
email:
|
29
155
|
- mat@blocknot.es
|
30
|
-
executables:
|
156
|
+
executables:
|
157
|
+
- rails
|
158
|
+
- rake
|
159
|
+
- rspec
|
160
|
+
- rubocop
|
31
161
|
extensions: []
|
32
162
|
extra_rdoc_files: []
|
33
163
|
files:
|
164
|
+
- ".circleci/config.yml"
|
34
165
|
- ".gitignore"
|
166
|
+
- ".rspec"
|
167
|
+
- ".rubocop.yml"
|
35
168
|
- Gemfile
|
36
169
|
- LICENSE.txt
|
37
170
|
- README.md
|
@@ -104,6 +237,10 @@ files:
|
|
104
237
|
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/utilities.sizes.scss
|
105
238
|
- app/assets/stylesheets/activeadmin_blaze_theme/icomoon.scss
|
106
239
|
- app/assets/stylesheets/activeadmin_blaze_theme/theme.scss
|
240
|
+
- bin/rails
|
241
|
+
- bin/rake
|
242
|
+
- bin/rspec
|
243
|
+
- bin/rubocop
|
107
244
|
- extra/screenshot1.jpg
|
108
245
|
- extra/screenshot2.jpg
|
109
246
|
- extra/screenshot3.jpg
|
@@ -112,11 +249,88 @@ files:
|
|
112
249
|
- lib/activeadmin_blaze_theme.rb
|
113
250
|
- lib/activeadmin_blaze_theme/version.rb
|
114
251
|
- lib/formtastic/inputs/blaze_toggle_input.rb
|
252
|
+
- spec/dummy/.ruby-version
|
253
|
+
- spec/dummy/.tool-versions
|
254
|
+
- spec/dummy/Rakefile
|
255
|
+
- spec/dummy/app/admin/authors.rb
|
256
|
+
- spec/dummy/app/admin/dashboard.rb
|
257
|
+
- spec/dummy/app/admin/posts.rb
|
258
|
+
- spec/dummy/app/admin/tags.rb
|
259
|
+
- spec/dummy/app/assets/config/manifest.js
|
260
|
+
- spec/dummy/app/assets/images/.keep
|
261
|
+
- spec/dummy/app/assets/javascripts/active_admin.js
|
262
|
+
- spec/dummy/app/assets/stylesheets/active_admin.scss
|
263
|
+
- spec/dummy/app/assets/stylesheets/application.css
|
264
|
+
- spec/dummy/app/channels/application_cable/channel.rb
|
265
|
+
- spec/dummy/app/channels/application_cable/connection.rb
|
266
|
+
- spec/dummy/app/controllers/application_controller.rb
|
267
|
+
- spec/dummy/app/controllers/concerns/.keep
|
268
|
+
- spec/dummy/app/helpers/application_helper.rb
|
269
|
+
- spec/dummy/app/javascript/packs/application.js
|
270
|
+
- spec/dummy/app/jobs/application_job.rb
|
271
|
+
- spec/dummy/app/mailers/application_mailer.rb
|
272
|
+
- spec/dummy/app/models/application_record.rb
|
273
|
+
- spec/dummy/app/models/author.rb
|
274
|
+
- spec/dummy/app/models/concerns/.keep
|
275
|
+
- spec/dummy/app/models/post.rb
|
276
|
+
- spec/dummy/app/models/post_tag.rb
|
277
|
+
- spec/dummy/app/models/profile.rb
|
278
|
+
- spec/dummy/app/models/tag.rb
|
279
|
+
- spec/dummy/app/views/layouts/application.html.erb
|
280
|
+
- spec/dummy/app/views/layouts/mailer.html.erb
|
281
|
+
- spec/dummy/app/views/layouts/mailer.text.erb
|
282
|
+
- spec/dummy/bin/rails
|
283
|
+
- spec/dummy/bin/rake
|
284
|
+
- spec/dummy/bin/setup
|
285
|
+
- spec/dummy/config.ru
|
286
|
+
- spec/dummy/config/application.rb
|
287
|
+
- spec/dummy/config/boot.rb
|
288
|
+
- spec/dummy/config/cable.yml
|
289
|
+
- spec/dummy/config/database.yml
|
290
|
+
- spec/dummy/config/environment.rb
|
291
|
+
- spec/dummy/config/environments/development.rb
|
292
|
+
- spec/dummy/config/environments/production.rb
|
293
|
+
- spec/dummy/config/environments/test.rb
|
294
|
+
- spec/dummy/config/initializers/active_admin.rb
|
295
|
+
- spec/dummy/config/initializers/application_controller_renderer.rb
|
296
|
+
- spec/dummy/config/initializers/assets.rb
|
297
|
+
- spec/dummy/config/initializers/backtrace_silencers.rb
|
298
|
+
- spec/dummy/config/initializers/content_security_policy.rb
|
299
|
+
- spec/dummy/config/initializers/cookies_serializer.rb
|
300
|
+
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
301
|
+
- spec/dummy/config/initializers/inflections.rb
|
302
|
+
- spec/dummy/config/initializers/mime_types.rb
|
303
|
+
- spec/dummy/config/initializers/wrap_parameters.rb
|
304
|
+
- spec/dummy/config/locales/en.yml
|
305
|
+
- spec/dummy/config/puma.rb
|
306
|
+
- spec/dummy/config/routes.rb
|
307
|
+
- spec/dummy/config/spring.rb
|
308
|
+
- spec/dummy/config/storage.yml
|
309
|
+
- spec/dummy/db/migrate/20170806125915_create_active_storage_tables.active_storage.rb
|
310
|
+
- spec/dummy/db/migrate/20180101010101_create_active_admin_comments.rb
|
311
|
+
- spec/dummy/db/migrate/20180607053251_create_authors.rb
|
312
|
+
- spec/dummy/db/migrate/20180607053254_create_profiles.rb
|
313
|
+
- spec/dummy/db/migrate/20180607053255_create_tags.rb
|
314
|
+
- spec/dummy/db/migrate/20180607053257_create_post_tags.rb
|
315
|
+
- spec/dummy/db/migrate/20180607053739_create_posts.rb
|
316
|
+
- spec/dummy/db/schema.rb
|
317
|
+
- spec/dummy/lib/assets/.keep
|
318
|
+
- spec/dummy/public/404.html
|
319
|
+
- spec/dummy/public/422.html
|
320
|
+
- spec/dummy/public/500.html
|
321
|
+
- spec/dummy/public/apple-touch-icon-precomposed.png
|
322
|
+
- spec/dummy/public/apple-touch-icon.png
|
323
|
+
- spec/dummy/public/favicon.ico
|
324
|
+
- spec/rails_helper.rb
|
325
|
+
- spec/spec_helper.rb
|
326
|
+
- spec/support/capybara.rb
|
327
|
+
- spec/support/drivers.rb
|
328
|
+
- spec/system/theme_spec.rb
|
115
329
|
homepage: https://github.com/blocknotes/activeadmin_blaze_theme
|
116
330
|
licenses:
|
117
331
|
- MIT
|
118
332
|
metadata: {}
|
119
|
-
post_install_message:
|
333
|
+
post_install_message:
|
120
334
|
rdoc_options: []
|
121
335
|
require_paths:
|
122
336
|
- lib
|
@@ -131,9 +345,85 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
131
345
|
- !ruby/object:Gem::Version
|
132
346
|
version: '0'
|
133
347
|
requirements: []
|
134
|
-
|
135
|
-
|
136
|
-
signing_key:
|
348
|
+
rubygems_version: 3.0.3
|
349
|
+
signing_key:
|
137
350
|
specification_version: 4
|
138
351
|
summary: ActiveAdmin Blaze Theme
|
139
|
-
test_files:
|
352
|
+
test_files:
|
353
|
+
- spec/dummy/.ruby-version
|
354
|
+
- spec/dummy/.tool-versions
|
355
|
+
- spec/dummy/Rakefile
|
356
|
+
- spec/dummy/app/admin/authors.rb
|
357
|
+
- spec/dummy/app/admin/dashboard.rb
|
358
|
+
- spec/dummy/app/admin/posts.rb
|
359
|
+
- spec/dummy/app/admin/tags.rb
|
360
|
+
- spec/dummy/app/assets/config/manifest.js
|
361
|
+
- spec/dummy/app/assets/images/.keep
|
362
|
+
- spec/dummy/app/assets/javascripts/active_admin.js
|
363
|
+
- spec/dummy/app/assets/stylesheets/active_admin.scss
|
364
|
+
- spec/dummy/app/assets/stylesheets/application.css
|
365
|
+
- spec/dummy/app/channels/application_cable/channel.rb
|
366
|
+
- spec/dummy/app/channels/application_cable/connection.rb
|
367
|
+
- spec/dummy/app/controllers/application_controller.rb
|
368
|
+
- spec/dummy/app/controllers/concerns/.keep
|
369
|
+
- spec/dummy/app/helpers/application_helper.rb
|
370
|
+
- spec/dummy/app/javascript/packs/application.js
|
371
|
+
- spec/dummy/app/jobs/application_job.rb
|
372
|
+
- spec/dummy/app/mailers/application_mailer.rb
|
373
|
+
- spec/dummy/app/models/application_record.rb
|
374
|
+
- spec/dummy/app/models/author.rb
|
375
|
+
- spec/dummy/app/models/concerns/.keep
|
376
|
+
- spec/dummy/app/models/post.rb
|
377
|
+
- spec/dummy/app/models/post_tag.rb
|
378
|
+
- spec/dummy/app/models/profile.rb
|
379
|
+
- spec/dummy/app/models/tag.rb
|
380
|
+
- spec/dummy/app/views/layouts/application.html.erb
|
381
|
+
- spec/dummy/app/views/layouts/mailer.html.erb
|
382
|
+
- spec/dummy/app/views/layouts/mailer.text.erb
|
383
|
+
- spec/dummy/bin/rails
|
384
|
+
- spec/dummy/bin/rake
|
385
|
+
- spec/dummy/bin/setup
|
386
|
+
- spec/dummy/config.ru
|
387
|
+
- spec/dummy/config/application.rb
|
388
|
+
- spec/dummy/config/boot.rb
|
389
|
+
- spec/dummy/config/cable.yml
|
390
|
+
- spec/dummy/config/database.yml
|
391
|
+
- spec/dummy/config/environment.rb
|
392
|
+
- spec/dummy/config/environments/development.rb
|
393
|
+
- spec/dummy/config/environments/production.rb
|
394
|
+
- spec/dummy/config/environments/test.rb
|
395
|
+
- spec/dummy/config/initializers/active_admin.rb
|
396
|
+
- spec/dummy/config/initializers/application_controller_renderer.rb
|
397
|
+
- spec/dummy/config/initializers/assets.rb
|
398
|
+
- spec/dummy/config/initializers/backtrace_silencers.rb
|
399
|
+
- spec/dummy/config/initializers/content_security_policy.rb
|
400
|
+
- spec/dummy/config/initializers/cookies_serializer.rb
|
401
|
+
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
402
|
+
- spec/dummy/config/initializers/inflections.rb
|
403
|
+
- spec/dummy/config/initializers/mime_types.rb
|
404
|
+
- spec/dummy/config/initializers/wrap_parameters.rb
|
405
|
+
- spec/dummy/config/locales/en.yml
|
406
|
+
- spec/dummy/config/puma.rb
|
407
|
+
- spec/dummy/config/routes.rb
|
408
|
+
- spec/dummy/config/spring.rb
|
409
|
+
- spec/dummy/config/storage.yml
|
410
|
+
- spec/dummy/db/migrate/20170806125915_create_active_storage_tables.active_storage.rb
|
411
|
+
- spec/dummy/db/migrate/20180101010101_create_active_admin_comments.rb
|
412
|
+
- spec/dummy/db/migrate/20180607053251_create_authors.rb
|
413
|
+
- spec/dummy/db/migrate/20180607053254_create_profiles.rb
|
414
|
+
- spec/dummy/db/migrate/20180607053255_create_tags.rb
|
415
|
+
- spec/dummy/db/migrate/20180607053257_create_post_tags.rb
|
416
|
+
- spec/dummy/db/migrate/20180607053739_create_posts.rb
|
417
|
+
- spec/dummy/db/schema.rb
|
418
|
+
- spec/dummy/lib/assets/.keep
|
419
|
+
- spec/dummy/public/404.html
|
420
|
+
- spec/dummy/public/422.html
|
421
|
+
- spec/dummy/public/500.html
|
422
|
+
- spec/dummy/public/apple-touch-icon-precomposed.png
|
423
|
+
- spec/dummy/public/apple-touch-icon.png
|
424
|
+
- spec/dummy/public/favicon.ico
|
425
|
+
- spec/rails_helper.rb
|
426
|
+
- spec/spec_helper.rb
|
427
|
+
- spec/support/capybara.rb
|
428
|
+
- spec/support/drivers.rb
|
429
|
+
- spec/system/theme_spec.rb
|