administrate-field-active_storage 0.3.2 → 0.3.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (137) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/main.yml +21 -0
  3. data/.gitignore +1 -1
  4. data/.ruby-version +1 -1
  5. data/Gemfile.lock +217 -0
  6. data/README.md +34 -3
  7. data/administrate-field-active_storage.gemspec +3 -2
  8. data/app/views/fields/active_storage/_form.html.erb +4 -1
  9. data/app/views/fields/active_storage/_index.html.erb +5 -2
  10. data/app/views/fields/active_storage/_item.html.erb +3 -2
  11. data/app/views/fields/active_storage/_preview.html.erb +1 -1
  12. data/app/views/fields/active_storage/_show.html.erb +1 -1
  13. data/config/i18n-tasks.yml +8 -0
  14. data/config/locales/administrate-field-active_storage.en.yml +10 -0
  15. data/config/locales/administrate-field-active_storage.ru.yml +10 -0
  16. data/contribute.md +3 -0
  17. data/lib/administrate/field/active_storage.rb +4 -10
  18. data/spec/i18n_spec.rb +35 -0
  19. data/test_app/.browserslistrc +1 -0
  20. data/test_app/.gitattributes +10 -0
  21. data/{example-project → test_app}/.gitignore +9 -7
  22. data/test_app/.ruby-version +1 -0
  23. data/test_app/Gemfile +45 -0
  24. data/test_app/Gemfile.lock +237 -0
  25. data/{example-project → test_app}/README.md +0 -0
  26. data/{example-project → test_app}/Rakefile +1 -1
  27. data/test_app/app/assets/config/manifest.js +4 -0
  28. data/{example-project → test_app}/app/assets/images/.keep +0 -0
  29. data/{example-project → test_app}/app/assets/stylesheets/application.css +0 -0
  30. data/{example-project → test_app}/app/controllers/admin/application_controller.rb +3 -3
  31. data/test_app/app/controllers/admin/posts_controller.rb +46 -0
  32. data/{example-project → test_app}/app/controllers/application_controller.rb +0 -0
  33. data/{example-project/app/dashboards/user_dashboard.rb → test_app/app/dashboards/post_dashboard.rb} +29 -27
  34. data/{example-project → test_app}/app/helpers/application_helper.rb +0 -0
  35. data/test_app/app/javascript/packs/application.js +10 -0
  36. data/{example-project → test_app}/app/models/application_record.rb +0 -0
  37. data/test_app/app/models/post.rb +3 -0
  38. data/test_app/app/views/layouts/application.html.erb +16 -0
  39. data/test_app/bin/bundle +114 -0
  40. data/test_app/bin/rails +4 -0
  41. data/test_app/bin/rake +4 -0
  42. data/{example-project → test_app}/bin/setup +6 -9
  43. data/{example-project → test_app}/config.ru +2 -1
  44. data/test_app/config/application.rb +35 -0
  45. data/{example-project/bin/bundle → test_app/config/boot.rb} +2 -2
  46. data/test_app/config/credentials.yml.enc +1 -0
  47. data/{example-project → test_app}/config/database.yml +1 -1
  48. data/{example-project → test_app}/config/environment.rb +1 -1
  49. data/{example-project → test_app}/config/environments/development.rb +21 -11
  50. data/{example-project → test_app}/config/environments/production.rb +36 -24
  51. data/{example-project → test_app}/config/environments/test.rb +20 -14
  52. data/{example-project → test_app}/config/initializers/application_controller_renderer.rb +0 -0
  53. data/{example-project → test_app}/config/initializers/assets.rb +0 -0
  54. data/test_app/config/initializers/backtrace_silencers.rb +8 -0
  55. data/{example-project → test_app}/config/initializers/content_security_policy.rb +5 -0
  56. data/{example-project → test_app}/config/initializers/cookies_serializer.rb +0 -0
  57. data/{example-project → test_app}/config/initializers/filter_parameter_logging.rb +3 -1
  58. data/{example-project → test_app}/config/initializers/inflections.rb +0 -0
  59. data/{example-project → test_app}/config/initializers/mime_types.rb +0 -0
  60. data/test_app/config/initializers/permissions_policy.rb +11 -0
  61. data/{example-project → test_app}/config/initializers/wrap_parameters.rb +0 -0
  62. data/{example-project → test_app}/config/locales/en.yml +1 -1
  63. data/{example-project → test_app}/config/puma.rb +13 -4
  64. data/test_app/config/routes.rb +9 -0
  65. data/{example-project → test_app}/config/storage.yml +0 -0
  66. data/{example-project/db/migrate/20181221134334_create_active_storage_tables.active_storage.rb → test_app/db/migrate/20210118122804_create_active_storage_tables.active_storage.rb} +15 -5
  67. data/test_app/db/migrate/20210118122927_create_posts.rb +8 -0
  68. data/{example-project → test_app}/db/schema.rb +18 -10
  69. data/{example-project → test_app}/db/seeds.rb +1 -1
  70. data/test_app/lib/active_storage/fixture_set.rb +71 -0
  71. data/{example-project → test_app}/public/404.html +0 -0
  72. data/{example-project → test_app}/public/422.html +0 -0
  73. data/{example-project → test_app}/public/500.html +0 -0
  74. data/{example-project → test_app}/public/apple-touch-icon-precomposed.png +0 -0
  75. data/{example-project → test_app}/public/apple-touch-icon.png +0 -0
  76. data/{example-project → test_app}/public/favicon.ico +0 -0
  77. data/test_app/public/robots.txt +1 -0
  78. data/{example-project → test_app}/test/application_system_test_case.rb +0 -0
  79. data/test_app/test/controllers/admin/posts_controller_test.rb +14 -0
  80. data/test_app/test/fixtures/active_storage/attachments.yml +4 -0
  81. data/test_app/test/fixtures/active_storage/blobs.yml +2 -0
  82. data/test_app/test/fixtures/files/cover_image.jpg +0 -0
  83. data/test_app/test/fixtures/posts.yml +11 -0
  84. data/test_app/test/models/post_test.rb +9 -0
  85. data/test_app/test/test_helper.rb +20 -0
  86. metadata +97 -99
  87. data/Rakefile +0 -22
  88. data/example-project/.ruby-version +0 -1
  89. data/example-project/Gemfile +0 -67
  90. data/example-project/Gemfile.lock +0 -265
  91. data/example-project/app/assets/config/manifest.js +0 -3
  92. data/example-project/app/assets/javascripts/application.js +0 -16
  93. data/example-project/app/assets/javascripts/cable.js +0 -13
  94. data/example-project/app/assets/javascripts/channels/.keep +0 -0
  95. data/example-project/app/channels/application_cable/channel.rb +0 -4
  96. data/example-project/app/channels/application_cable/connection.rb +0 -4
  97. data/example-project/app/controllers/admin/users_controller.rb +0 -27
  98. data/example-project/app/controllers/concerns/.keep +0 -0
  99. data/example-project/app/controllers/users_controller.rb +0 -7
  100. data/example-project/app/jobs/application_job.rb +0 -2
  101. data/example-project/app/mailers/application_mailer.rb +0 -4
  102. data/example-project/app/models/concerns/.keep +0 -0
  103. data/example-project/app/models/user.rb +0 -3
  104. data/example-project/app/views/layouts/application.html.erb +0 -15
  105. data/example-project/app/views/layouts/mailer.html.erb +0 -13
  106. data/example-project/app/views/layouts/mailer.text.erb +0 -1
  107. data/example-project/bin/rails +0 -9
  108. data/example-project/bin/rake +0 -9
  109. data/example-project/bin/spring +0 -17
  110. data/example-project/bin/update +0 -31
  111. data/example-project/bin/yarn +0 -11
  112. data/example-project/config/application.rb +0 -19
  113. data/example-project/config/boot.rb +0 -4
  114. data/example-project/config/cable.yml +0 -10
  115. data/example-project/config/credentials.yml.enc +0 -1
  116. data/example-project/config/initializers/backtrace_silencers.rb +0 -7
  117. data/example-project/config/routes.rb +0 -10
  118. data/example-project/config/spring.rb +0 -6
  119. data/example-project/db/migrate/20181013145025_create_users.rb +0 -9
  120. data/example-project/lib/assets/.keep +0 -0
  121. data/example-project/lib/tasks/.keep +0 -0
  122. data/example-project/log/.keep +0 -0
  123. data/example-project/package.json +0 -5
  124. data/example-project/public/robots.txt +0 -1
  125. data/example-project/test/controllers/.keep +0 -0
  126. data/example-project/test/fixtures/.keep +0 -0
  127. data/example-project/test/fixtures/files/.keep +0 -0
  128. data/example-project/test/fixtures/users.yml +0 -7
  129. data/example-project/test/helpers/.keep +0 -0
  130. data/example-project/test/integration/.keep +0 -0
  131. data/example-project/test/mailers/.keep +0 -0
  132. data/example-project/test/models/.keep +0 -0
  133. data/example-project/test/models/user_test.rb +0 -7
  134. data/example-project/test/system/.keep +0 -0
  135. data/example-project/test/test_helper.rb +0 -10
  136. data/example-project/tmp/.keep +0 -0
  137. data/example-project/vendor/.keep +0 -0
@@ -0,0 +1,10 @@
1
+ ---
2
+ ru:
3
+ administrate:
4
+ fields:
5
+ active_storage:
6
+ add: Добавить
7
+ attachment: Вложение
8
+ no_attachment: Нет
9
+ remove: Удалить
10
+ replace: Заменить
data/contribute.md CHANGED
@@ -11,3 +11,6 @@
11
11
  - Daniel Tinoco [@0urobor0s](https://github.com/0urobor0s)
12
12
  - Matthew Hui [@mhui](https://github.com/mhui)
13
13
  - Sébastien Dubois [@sedubois](https://github.com/sedubois)
14
+ - Jazzy Gasper [@jazzygasper](https://github.com/jazzygasper)
15
+ - David Ma [@taikon](https://github.com/taikon)
16
+ - Dmitry Davydov [@haukot](https://github.com/haukot)
@@ -16,7 +16,7 @@ module Administrate
16
16
  end
17
17
 
18
18
  def index_display_count?
19
- options.fetch(:index_display_count) { attachments.present? && attachments.count != 1 }
19
+ options.fetch(:index_display_count) { attached? && attachments.count != 1 }
20
20
  end
21
21
 
22
22
  def show_display_preview?
@@ -36,13 +36,7 @@ module Administrate
36
36
  end
37
37
 
38
38
  def destroy_url
39
- options.fetch(:destroy_url) do
40
- proc do |namespace, record, attachment|
41
- options = [attachment.name, namespace, record]
42
- options << { attachment_id: attachment.id } if many?
43
- options
44
- end
45
- end
39
+ options.fetch(:destroy_url, nil)
46
40
  end
47
41
 
48
42
  # currently we are using Rails.application.routes.url_helpers
@@ -56,7 +50,7 @@ module Administrate
56
50
  end
57
51
 
58
52
  def variant(attachment, options)
59
- Rails.application.routes.url_helpers.rails_representation_path(attachment.variant(combine_options: options), only_path: true)
53
+ Rails.application.routes.url_helpers.rails_representation_path(attachment.variant(options), only_path: true)
60
54
  end
61
55
 
62
56
  def url(attachment)
@@ -76,7 +70,7 @@ module Administrate
76
70
  end
77
71
 
78
72
  def attachments
79
- data.attachments if attached?
73
+ many? ? data.attachments : [data.attachment] if attached?
80
74
  end
81
75
  end
82
76
  end
data/spec/i18n_spec.rb ADDED
@@ -0,0 +1,35 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'i18n/tasks'
4
+
5
+ # Template i18n-tasks test file from https://github.com/glebm/i18n-tasks/blob/main/templates/rspec/i18n_spec.rb
6
+ RSpec.describe I18n do
7
+ let(:i18n) { I18n::Tasks::BaseTask.new }
8
+ let(:missing_keys) { i18n.missing_keys }
9
+ let(:unused_keys) { i18n.unused_keys }
10
+ let(:inconsistent_interpolations) { i18n.inconsistent_interpolations }
11
+
12
+ it 'does not have missing keys' do
13
+ expect(missing_keys).to be_empty,
14
+ "Missing #{missing_keys.leaves.count} i18n keys, run `i18n-tasks missing' to show them"
15
+ end
16
+
17
+ it 'does not have unused keys' do
18
+ expect(unused_keys).to be_empty,
19
+ "#{unused_keys.leaves.count} unused i18n keys, run `i18n-tasks unused' to show them"
20
+ end
21
+
22
+ it 'files are normalized' do
23
+ non_normalized = i18n.non_normalized_paths
24
+ error_message = "The following files need to be normalized:\n" \
25
+ "#{non_normalized.map { |path| " #{path}" }.join("\n")}\n" \
26
+ "Please run `i18n-tasks normalize' to fix"
27
+ expect(non_normalized).to be_empty, error_message
28
+ end
29
+
30
+ it 'does not have inconsistent interpolations' do
31
+ error_message = "#{inconsistent_interpolations.leaves.count} i18n keys have inconsistent interpolations.\n" \
32
+ "Run `i18n-tasks check-consistent-interpolations' to show them"
33
+ expect(inconsistent_interpolations).to be_empty, error_message
34
+ end
35
+ end
@@ -0,0 +1 @@
1
+ defaults
@@ -0,0 +1,10 @@
1
+ # See https://git-scm.com/docs/gitattributes for more about git attribute files.
2
+
3
+ # Mark the database schema as having been generated.
4
+ db/schema.rb linguist-generated
5
+
6
+ # Mark the yarn lockfile as having been generated.
7
+ yarn.lock linguist-generated
8
+
9
+ # Mark any vendored files as having been vendored.
10
+ vendor/* linguist-vendored
@@ -9,22 +9,24 @@
9
9
 
10
10
  # Ignore the default SQLite database.
11
11
  /db/*.sqlite3
12
- /db/*.sqlite3-journal
12
+ /db/*.sqlite3-*
13
13
 
14
14
  # Ignore all logfiles and tempfiles.
15
15
  /log/*
16
16
  /tmp/*
17
- !/log/.keep
18
- !/tmp/.keep
19
17
 
20
- # Ignore uploaded files in development
18
+ # Ignore uploaded files in development.
21
19
  /storage/*
22
20
 
23
- /node_modules
24
- /yarn-error.log
25
-
26
21
  /public/assets
27
22
  .byebug_history
28
23
 
29
24
  # Ignore master key for decrypting credentials and more.
30
25
  /config/master.key
26
+
27
+ /public/packs
28
+ /public/packs-test
29
+ /node_modules
30
+ /yarn-error.log
31
+ yarn-debug.log*
32
+ .yarn-integrity
@@ -0,0 +1 @@
1
+ ruby-3.0.0
data/test_app/Gemfile ADDED
@@ -0,0 +1,45 @@
1
+ source 'https://rubygems.org'
2
+ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
3
+
4
+ ruby '3.0.0'
5
+
6
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
7
+ gem 'rails', '~> 6.1.1'
8
+ # Use sqlite3 as the database for Active Record
9
+ gem 'sqlite3', '~> 1.4'
10
+ # Use Puma as the app server
11
+ gem 'puma', '~> 5.0'
12
+ # Use SCSS for stylesheets
13
+ gem 'sass-rails', '>= 6'
14
+ # Use Active Model has_secure_password
15
+ # gem 'bcrypt', '~> 3.1.7'
16
+
17
+ # Use Active Storage variant
18
+ # gem 'image_processing', '~> 1.2'
19
+
20
+ group :development, :test do
21
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
22
+ gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
23
+ end
24
+
25
+ group :development do
26
+ # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
27
+ gem 'web-console', '>= 4.1.0'
28
+ # Display performance information such as SQL time and flame graphs for each request in your browser.
29
+ # Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
30
+ gem 'rack-mini-profiler', '~> 2.0'
31
+ end
32
+
33
+ group :test do
34
+ # Adds support for Capybara system testing and selenium driver
35
+ gem 'capybara', '>= 3.26'
36
+ gem 'selenium-webdriver'
37
+ # Easy installation and use of web drivers to run system tests with browsers
38
+ # gem 'webdrivers'
39
+ end
40
+
41
+ # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
42
+ gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
43
+
44
+ gem "administrate", "~> 0.14.0"
45
+ gem "administrate-field-active_storage", path: ".."
@@ -0,0 +1,237 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ administrate-field-active_storage (0.3.6)
5
+ administrate (>= 0.2.2)
6
+ rails (>= 6.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actioncable (6.1.1)
12
+ actionpack (= 6.1.1)
13
+ activesupport (= 6.1.1)
14
+ nio4r (~> 2.0)
15
+ websocket-driver (>= 0.6.1)
16
+ actionmailbox (6.1.1)
17
+ actionpack (= 6.1.1)
18
+ activejob (= 6.1.1)
19
+ activerecord (= 6.1.1)
20
+ activestorage (= 6.1.1)
21
+ activesupport (= 6.1.1)
22
+ mail (>= 2.7.1)
23
+ actionmailer (6.1.1)
24
+ actionpack (= 6.1.1)
25
+ actionview (= 6.1.1)
26
+ activejob (= 6.1.1)
27
+ activesupport (= 6.1.1)
28
+ mail (~> 2.5, >= 2.5.4)
29
+ rails-dom-testing (~> 2.0)
30
+ actionpack (6.1.1)
31
+ actionview (= 6.1.1)
32
+ activesupport (= 6.1.1)
33
+ rack (~> 2.0, >= 2.0.9)
34
+ rack-test (>= 0.6.3)
35
+ rails-dom-testing (~> 2.0)
36
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
37
+ actiontext (6.1.1)
38
+ actionpack (= 6.1.1)
39
+ activerecord (= 6.1.1)
40
+ activestorage (= 6.1.1)
41
+ activesupport (= 6.1.1)
42
+ nokogiri (>= 1.8.5)
43
+ actionview (6.1.1)
44
+ activesupport (= 6.1.1)
45
+ builder (~> 3.1)
46
+ erubi (~> 1.4)
47
+ rails-dom-testing (~> 2.0)
48
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
49
+ activejob (6.1.1)
50
+ activesupport (= 6.1.1)
51
+ globalid (>= 0.3.6)
52
+ activemodel (6.1.1)
53
+ activesupport (= 6.1.1)
54
+ activerecord (6.1.1)
55
+ activemodel (= 6.1.1)
56
+ activesupport (= 6.1.1)
57
+ activestorage (6.1.1)
58
+ actionpack (= 6.1.1)
59
+ activejob (= 6.1.1)
60
+ activerecord (= 6.1.1)
61
+ activesupport (= 6.1.1)
62
+ marcel (~> 0.3.1)
63
+ mimemagic (~> 0.3.2)
64
+ activesupport (6.1.1)
65
+ concurrent-ruby (~> 1.0, >= 1.0.2)
66
+ i18n (>= 1.6, < 2)
67
+ minitest (>= 5.1)
68
+ tzinfo (~> 2.0)
69
+ zeitwerk (~> 2.3)
70
+ addressable (2.7.0)
71
+ public_suffix (>= 2.0.2, < 5.0)
72
+ administrate (0.14.0)
73
+ actionpack (>= 4.2)
74
+ actionview (>= 4.2)
75
+ activerecord (>= 4.2)
76
+ autoprefixer-rails (>= 6.0)
77
+ datetime_picker_rails (~> 0.0.7)
78
+ jquery-rails (>= 4.0)
79
+ kaminari (>= 1.0)
80
+ momentjs-rails (~> 2.8)
81
+ sassc-rails (~> 2.1)
82
+ selectize-rails (~> 0.6)
83
+ autoprefixer-rails (10.2.0.0)
84
+ execjs
85
+ bindex (0.8.1)
86
+ builder (3.2.4)
87
+ byebug (11.1.3)
88
+ capybara (3.34.0)
89
+ addressable
90
+ mini_mime (>= 0.1.3)
91
+ nokogiri (~> 1.8)
92
+ rack (>= 1.6.0)
93
+ rack-test (>= 0.6.3)
94
+ regexp_parser (~> 1.5)
95
+ xpath (~> 3.2)
96
+ childprocess (3.0.0)
97
+ concurrent-ruby (1.1.8)
98
+ crass (1.0.6)
99
+ datetime_picker_rails (0.0.7)
100
+ momentjs-rails (>= 2.8.1)
101
+ erubi (1.10.0)
102
+ execjs (2.7.0)
103
+ ffi (1.14.2)
104
+ globalid (0.4.2)
105
+ activesupport (>= 4.2.0)
106
+ i18n (1.8.7)
107
+ concurrent-ruby (~> 1.0)
108
+ jquery-rails (4.4.0)
109
+ rails-dom-testing (>= 1, < 3)
110
+ railties (>= 4.2.0)
111
+ thor (>= 0.14, < 2.0)
112
+ kaminari (1.2.1)
113
+ activesupport (>= 4.1.0)
114
+ kaminari-actionview (= 1.2.1)
115
+ kaminari-activerecord (= 1.2.1)
116
+ kaminari-core (= 1.2.1)
117
+ kaminari-actionview (1.2.1)
118
+ actionview
119
+ kaminari-core (= 1.2.1)
120
+ kaminari-activerecord (1.2.1)
121
+ activerecord
122
+ kaminari-core (= 1.2.1)
123
+ kaminari-core (1.2.1)
124
+ loofah (2.9.0)
125
+ crass (~> 1.0.2)
126
+ nokogiri (>= 1.5.9)
127
+ mail (2.7.1)
128
+ mini_mime (>= 0.1.1)
129
+ marcel (0.3.3)
130
+ mimemagic (~> 0.3.2)
131
+ method_source (1.0.0)
132
+ mimemagic (0.3.5)
133
+ mini_mime (1.0.2)
134
+ minitest (5.14.3)
135
+ momentjs-rails (2.20.1)
136
+ railties (>= 3.1)
137
+ nio4r (2.5.4)
138
+ nokogiri (1.11.1-x86_64-darwin)
139
+ racc (~> 1.4)
140
+ public_suffix (4.0.6)
141
+ puma (5.1.1)
142
+ nio4r (~> 2.0)
143
+ racc (1.5.2)
144
+ rack (2.2.3)
145
+ rack-mini-profiler (2.3.0)
146
+ rack (>= 1.2.0)
147
+ rack-test (1.1.0)
148
+ rack (>= 1.0, < 3)
149
+ rails (6.1.1)
150
+ actioncable (= 6.1.1)
151
+ actionmailbox (= 6.1.1)
152
+ actionmailer (= 6.1.1)
153
+ actionpack (= 6.1.1)
154
+ actiontext (= 6.1.1)
155
+ actionview (= 6.1.1)
156
+ activejob (= 6.1.1)
157
+ activemodel (= 6.1.1)
158
+ activerecord (= 6.1.1)
159
+ activestorage (= 6.1.1)
160
+ activesupport (= 6.1.1)
161
+ bundler (>= 1.15.0)
162
+ railties (= 6.1.1)
163
+ sprockets-rails (>= 2.0.0)
164
+ rails-dom-testing (2.0.3)
165
+ activesupport (>= 4.2.0)
166
+ nokogiri (>= 1.6)
167
+ rails-html-sanitizer (1.3.0)
168
+ loofah (~> 2.3)
169
+ railties (6.1.1)
170
+ actionpack (= 6.1.1)
171
+ activesupport (= 6.1.1)
172
+ method_source
173
+ rake (>= 0.8.7)
174
+ thor (~> 1.0)
175
+ rake (13.0.3)
176
+ regexp_parser (1.8.2)
177
+ rubyzip (2.3.0)
178
+ sass-rails (6.0.0)
179
+ sassc-rails (~> 2.1, >= 2.1.1)
180
+ sassc (2.4.0)
181
+ ffi (~> 1.9)
182
+ sassc-rails (2.1.2)
183
+ railties (>= 4.0.0)
184
+ sassc (>= 2.0)
185
+ sprockets (> 3.0)
186
+ sprockets-rails
187
+ tilt
188
+ selectize-rails (0.12.6)
189
+ selenium-webdriver (3.142.7)
190
+ childprocess (>= 0.5, < 4.0)
191
+ rubyzip (>= 1.2.2)
192
+ sprockets (4.0.2)
193
+ concurrent-ruby (~> 1.0)
194
+ rack (> 1, < 3)
195
+ sprockets-rails (3.2.2)
196
+ actionpack (>= 4.0)
197
+ activesupport (>= 4.0)
198
+ sprockets (>= 3.0.0)
199
+ sqlite3 (1.4.2)
200
+ thor (1.1.0)
201
+ tilt (2.0.10)
202
+ tzinfo (2.0.4)
203
+ concurrent-ruby (~> 1.0)
204
+ web-console (4.1.0)
205
+ actionview (>= 6.0.0)
206
+ activemodel (>= 6.0.0)
207
+ bindex (>= 0.4.0)
208
+ railties (>= 6.0.0)
209
+ websocket-driver (0.7.3)
210
+ websocket-extensions (>= 0.1.0)
211
+ websocket-extensions (0.1.5)
212
+ xpath (3.2.0)
213
+ nokogiri (~> 1.8)
214
+ zeitwerk (2.4.2)
215
+
216
+ PLATFORMS
217
+ x86_64-darwin-20
218
+
219
+ DEPENDENCIES
220
+ administrate (~> 0.14.0)
221
+ administrate-field-active_storage!
222
+ byebug
223
+ capybara (>= 3.26)
224
+ puma (~> 5.0)
225
+ rack-mini-profiler (~> 2.0)
226
+ rails (~> 6.1.1)
227
+ sass-rails (>= 6)
228
+ selenium-webdriver
229
+ sqlite3 (~> 1.4)
230
+ tzinfo-data
231
+ web-console (>= 4.1.0)
232
+
233
+ RUBY VERSION
234
+ ruby 3.0.0p0
235
+
236
+ BUNDLED WITH
237
+ 2.2.5
File without changes
@@ -1,6 +1,6 @@
1
1
  # Add your own tasks in files placed in lib/tasks ending in .rake,
2
2
  # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
3
 
4
- require_relative 'config/application'
4
+ require_relative "config/application"
5
5
 
6
6
  Rails.application.load_tasks
@@ -0,0 +1,4 @@
1
+ //= link_tree ../images
2
+ //= link_directory ../stylesheets .css
3
+ //= link administrate/application.css
4
+ //= link administrate/application.js