File tree Expand file tree Collapse file tree 5 files changed +34
-8
lines changed
Expand file tree Collapse file tree 5 files changed +34
-8
lines changed Original file line number Diff line number Diff line change @@ -32,19 +32,21 @@ jobs:
3232 - gemfile : gemfiles/Gemfile.rails-7.1
3333 ruby-version : 3.2.9
3434 - gemfile : gemfiles/Gemfile.rails-7.2
35- ruby-version : 3.3.9
35+ ruby-version : 3.3.10
3636 - gemfile : gemfiles/Gemfile.rails-8.0
37- ruby-version : 3.4.5
37+ ruby-version : 3.4.8
38+ - gemfile : gemfiles/Gemfile.rails-8.1
39+ ruby-version : 4.0.0
3840 - gemfile : Gemfile
39- ruby-version : 3.4.5
41+ ruby-version : 4.0.0
4042 orm : active_record
4143 test-db : mysql
4244 - gemfile : Gemfile
43- ruby-version : 3.4.5
45+ ruby-version : 4.0.0
4446 orm : active_record
4547 test-db : postgresql
4648 - gemfile : Gemfile
47- ruby-version : 3.4.5
49+ ruby-version : 4.0.0
4850 orm : mongoid
4951 test-db : mongodb
5052
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ Gem::Specification.new do |s|
1919 s . require_paths = [ "lib" ]
2020 s . required_ruby_version = '>= 2.1.0'
2121
22- s . add_dependency 'railties' , '>= 7.0.0' , '< 8.1 '
22+ s . add_dependency 'railties' , '>= 7.0.0' , '< 8.2 '
2323 s . add_dependency 'i18n' , '>= 0.5.0'
2424 s . add_dependency 'jquery-rails' , '>= 3.1.1'
2525 s . add_dependency 'swagger-blocks' , '>= 3.0.0'
Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ gem 'sprockets-rails'
88group :development do
99 gem 'bullet'
1010 gem 'rack-cors'
11- gem 'sqlite3'
1211end
1312
1413group :test do
Original file line number Diff line number Diff line change 1+ source 'https://rubygems.org'
2+
3+ gemspec path: '../'
4+
5+ gem 'rails', '~> 8.1.0'
6+ gem 'sprockets-rails'
7+
8+ group :development do
9+ gem 'bullet'
10+ gem 'rack-cors'
11+ end
12+
13+ group :test do
14+ gem 'rails-controller-testing'
15+ gem 'ammeter'
16+ gem 'timecop'
17+ gem 'committee'
18+ gem 'committee-rails', '< 0.6'
19+ # gem 'coveralls', require: false
20+ gem 'coveralls_reborn', require: false
21+ end
22+
23+ gem 'dotenv-rails', groups: [:development, :test]
Original file line number Diff line number Diff line change @@ -34,7 +34,9 @@ class Application < Rails::Application
3434 if Gem ::Version . new ( "5.2.0" ) <= Rails . gem_version && Rails . gem_version < Gem ::Version . new ( "6.0.0" ) && ENV [ 'AN_TEST_DB' ] != 'mongodb'
3535 config . active_record . sqlite3 . represent_boolean_as_integer = true
3636 end
37- config . active_support . to_time_preserves_timezone = :zone
37+ if Rails . gem_version < Gem ::Version . new ( "8.1.0" )
38+ config . active_support . to_time_preserves_timezone = :zone
39+ end
3840
3941 # Configure CORS for API mode
4042 if defined? ( Rack ::Cors )
You can’t perform that action at this time.
0 commit comments