redmineup 1.1.3 → 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.
data/test/test_helper.rb CHANGED
@@ -13,7 +13,8 @@ Dir.glob(File.expand_path('models/*.rb', __dir__)).each { |f| require f }
13
13
  class ActiveSupport::TestCase # :nodoc:
14
14
  include ActiveRecord::TestFixtures
15
15
 
16
- self.fixture_path = File.dirname(__FILE__) + '/fixtures/'
16
+ gem_fixtures_path = File.dirname(__FILE__) + '/fixtures/'
17
+ respond_to?(:fixture_paths=) ? self.fixture_paths = [gem_fixtures_path] : self.fixture_path = gem_fixtures_path
17
18
 
18
19
  self.use_transactional_tests = true if RUBY_VERSION > '1.9.3'
19
20
  self.use_instantiated_fixtures = false
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.3
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-03-10 00:00:00.000000000 Z
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