Skip to content

Commit

Permalink
Merge pull request #124 from onozaty/develop/v3.5.2
Browse files Browse the repository at this point in the history
Develop v3.5.2
  • Loading branch information
onozaty authored May 18, 2024
2 parents fd10280 + 12e5177 commit 66fa1bd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
5 changes: 1 addition & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
version: 2.1

orbs:
redmine-plugin: agileware-jp/redmine-plugin@3.3.1
browser-tools: circleci/browser-tools@1.4.6
redmine-plugin: agileware-jp/redmine-plugin@3.6.0

jobs:
run_tests:
Expand Down Expand Up @@ -51,8 +50,6 @@ jobs:
- run:
working_directory: redmine
command: touch Gemfile.local
- browser-tools/install-chrome
- browser-tools/install-chromedriver
- redmine-plugin/bundle-install
- redmine-plugin/test:
plugin: view_customize
Expand Down
2 changes: 1 addition & 1 deletion app/models/view_customize.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
class ViewCustomize < ActiveRecord::Base
class ViewCustomize < (defined?(ApplicationRecord) == 'constant' ? ApplicationRecord : ActiveRecord::Base)
belongs_to :author, :class_name => 'User', :foreign_key => 'author_id'

validates_length_of :path_pattern, :maximum => 255
Expand Down
2 changes: 1 addition & 1 deletion init.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
name 'View Customize plugin'
author 'onozaty'
description 'View Customize plugin for Redmine'
version '3.5.1'
version '3.5.2'
url 'https://github.com/onozaty/redmine-view-customize'
author_url 'https://github.com/onozaty'

Expand Down

0 comments on commit 66fa1bd

Please sign in to comment.