redmineup 1.1.4 → 1.1.5
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/.gitignore +1 -0
- data/README.md +74 -153
- data/app/assets/stylesheets/redmineup.css +476 -0
- data/app/views/redmineup/_additional_assets.html.erb +1 -0
- data/config/locales/en.yml +1 -0
- data/config/locales/ru.yml +1 -0
- data/config/routes.rb +2 -0
- data/doc/CHANGELOG +42 -26
- data/doc/active-record-mixins.md +156 -0
- data/doc/assets-money-and-utilities.md +71 -0
- data/doc/tagging-and-select2.md +108 -0
- data/lib/redmineup/acts_as_taggable/tag.rb +12 -2
- data/lib/redmineup/acts_as_taggable/up_acts_as_taggable.rb +7 -5
- data/lib/redmineup/engine.rb +12 -2
- data/lib/redmineup/helpers/external_assets_helper.rb +11 -5
- data/lib/redmineup/helpers/form_tag_helper.rb +42 -0
- data/lib/redmineup/helpers/tags_helper.rb +39 -3
- data/lib/redmineup/hooks/views_layouts_hook.rb +1 -5
- data/lib/redmineup/patches/auto_completes_controller_patch.rb +19 -0
- data/lib/redmineup/version.rb +1 -1
- data/test/acts_as_taggable/tag_test.rb +12 -9
- data/test/tags_helper_view_test.rb +41 -0
- data/test/test_helper.rb +2 -1
- metadata +10 -2
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: redmineup
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- RedmineUP
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-04-
|
|
11
|
+
date: 2026-04-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -123,8 +123,10 @@ files:
|
|
|
123
123
|
- app/assets/javascripts/select2_helpers.js
|
|
124
124
|
- app/assets/stylesheets/calendars.css
|
|
125
125
|
- app/assets/stylesheets/money.css
|
|
126
|
+
- app/assets/stylesheets/redmineup.css
|
|
126
127
|
- app/assets/stylesheets/select2.css
|
|
127
128
|
- app/controllers/redmineup_controller.rb
|
|
129
|
+
- app/views/redmineup/_additional_assets.html.erb
|
|
128
130
|
- app/views/redmineup/_money.html.erb
|
|
129
131
|
- app/views/redmineup/settings.html.erb
|
|
130
132
|
- config/currency_iso.json
|
|
@@ -136,6 +138,9 @@ files:
|
|
|
136
138
|
- config/routes.rb
|
|
137
139
|
- doc/CHANGELOG
|
|
138
140
|
- doc/LICENSE.txt
|
|
141
|
+
- doc/active-record-mixins.md
|
|
142
|
+
- doc/assets-money-and-utilities.md
|
|
143
|
+
- doc/tagging-and-select2.md
|
|
139
144
|
- lib/action_cable/server/rup_configuration.rb
|
|
140
145
|
- lib/action_cable/server/rup_server.rb
|
|
141
146
|
- lib/application_record.rb
|
|
@@ -183,6 +188,7 @@ files:
|
|
|
183
188
|
- lib/redmineup/money_helper.rb
|
|
184
189
|
- lib/redmineup/patches/action_cable_base_patch.rb
|
|
185
190
|
- lib/redmineup/patches/action_cable_patch.rb
|
|
191
|
+
- lib/redmineup/patches/auto_completes_controller_patch.rb
|
|
186
192
|
- lib/redmineup/patches/compatibility/application_controller_patch.rb
|
|
187
193
|
- lib/redmineup/patches/compatibility/routing_mapper_patch.rb
|
|
188
194
|
- lib/redmineup/patches/compatibility/sprite_patch.rb
|
|
@@ -238,6 +244,7 @@ files:
|
|
|
238
244
|
- test/money_helper_test.rb
|
|
239
245
|
- test/schema.rb
|
|
240
246
|
- test/tags_helper_test.rb
|
|
247
|
+
- test/tags_helper_view_test.rb
|
|
241
248
|
- test/test_helper.rb
|
|
242
249
|
- test/vote_helper_test.rb
|
|
243
250
|
homepage: https://www.redmineup.com
|
|
@@ -309,5 +316,6 @@ test_files:
|
|
|
309
316
|
- test/money_helper_test.rb
|
|
310
317
|
- test/schema.rb
|
|
311
318
|
- test/tags_helper_test.rb
|
|
319
|
+
- test/tags_helper_view_test.rb
|
|
312
320
|
- test/test_helper.rb
|
|
313
321
|
- test/vote_helper_test.rb
|