Skip to content

Commit 66fa1bd

Browse files
authored
Merge pull request #124 from onozaty/develop/v3.5.2
Develop v3.5.2
2 parents fd10280 + 12e5177 commit 66fa1bd

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

Diff for: .circleci/config.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
version: 2.1
22

33
orbs:
4-
redmine-plugin: agileware-jp/[email protected]
5-
browser-tools: circleci/[email protected]
4+
redmine-plugin: agileware-jp/[email protected]
65

76
jobs:
87
run_tests:
@@ -51,8 +50,6 @@ jobs:
5150
- run:
5251
working_directory: redmine
5352
command: touch Gemfile.local
54-
- browser-tools/install-chrome
55-
- browser-tools/install-chromedriver
5653
- redmine-plugin/bundle-install
5754
- redmine-plugin/test:
5855
plugin: view_customize

Diff for: app/models/view_customize.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class ViewCustomize < ActiveRecord::Base
1+
class ViewCustomize < (defined?(ApplicationRecord) == 'constant' ? ApplicationRecord : ActiveRecord::Base)
22
belongs_to :author, :class_name => 'User', :foreign_key => 'author_id'
33

44
validates_length_of :path_pattern, :maximum => 255

Diff for: init.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
name 'View Customize plugin'
44
author 'onozaty'
55
description 'View Customize plugin for Redmine'
6-
version '3.5.1'
6+
version '3.5.2'
77
url 'https://github.com/onozaty/redmine-view-customize'
88
author_url 'https://github.com/onozaty'
99

0 commit comments

Comments
 (0)