Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .mise.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[tools]
ruby = "3.4.1"


11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,17 @@ master
#### Enhancements
* Added option `input_types` for integrating custom form controls

v1.1.0
------

#### Enhancements
* Rails 7.2 compatibility updates (ActiveRecord concern load via Railtie)
* Use YAML coder for serialized attributes

#### Maintenance
* Bump required Ruby to >= 3.0
* Set Rails dependency to >= 7.2

#### Bugfix

* Fix max_build_count-option should be ignored when set to zero
Expand Down
20 changes: 12 additions & 8 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,15 @@ gemspec
# To use debugger
# gem 'debugger'

gem 'ice_cube', git: 'git://github.com/joelmeyerhamme/ice_cube.git', branch: 'master'
gem 'simple_form'
gem 'rails-i18n', '~> 4.0.0' # For 4.0.x
gem "date_picker", github: 'benignware/date_picker'
gem 'database_cleaner'
gem 'sqlite3'
gem 'factory_girl_rails', "~> 4.0"
gem 'turbolinks', :git => 'git://github.com/rails/turbolinks.git'
gem 'ice_cube'
gem 'simple_form', '~> 5.2'
gem 'rails-i18n', '~> 7.0'
gem 'turbolinks', '~> 5.2'

group :development, :test do
gem 'sqlite3', '~> 1.6'
gem 'rspec-rails', '~> 6.0'
gem 'factory_bot_rails', '~> 6.2'
gem 'database_cleaner-active_record', '~> 2.1'
gem 'debug', platforms: [:mri, :mingw, :x64_mingw]
end
Loading