Skip to content

Commit

Permalink
Merge pull request #91 from FundingCircle/cd-150-support-rails-7
Browse files Browse the repository at this point in the history
Added rails 7
  • Loading branch information
IsmaelMarinMolina authored Sep 25, 2023
2 parents edb946a + b4e48e4 commit be401b3
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,4 +187,4 @@ steps:
env: production
locale: UK
depends_on:
- publish_master_gem
- publish_master_gem
10 changes: 10 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,13 @@ appraise 'rails-6' do
gem 'sqlite3', '~> 1.4'
gem 'tzinfo-data'
end

appraise "rails-7" do
gem "rails", "~> 7"
gem 'sqlite3', '~> 1.4'
end

appraise "rails-7" do
gem "rails", "~> 7"
gem 'sqlite3', '~> 1.4'
end
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Vault Rails Changelog

## 2.1.2 (September 8, 2023)

IMPROVEMENTS
- Add Rails 7 Support

## 2.1.1 (January 31, 2022)

NEW FEATURES
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Vault Rails [![CircleCI](https://circleci.com/gh/FundingCircle/vault-rails/tree/master.svg?style=svg)](https://circleci.com/gh/FundingCircle/vault-rails/tree/master)
===========

> [!IMPORTANT]
> Library has been recently updated to provide support to Rails 7, it was technically tested but if you find error integrating it, drop a message in the
> [\#customerdata team channel](https://fundingcircle.slack.com/archives/C03PNLY44M6)
Vault is the official Rails plugin for interacting with [Vault](https://vaultproject.io) by HashiCorp.

**The documentation in this README corresponds to the master branch of the Vault Rails plugin. It may contain unreleased features or different APIs than the most recently released version. Please see the Git tag that corresponds to your version of the Vault Rails plugin for the proper documentation.**
Expand Down
6 changes: 3 additions & 3 deletions fc-vault-rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@ Gem::Specification.new do |s|
s.files = Dir["{app,config,db,lib}/**/*", "LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["spec/**/*"]

s.add_dependency "activerecord", ">= 4.2"
s.add_dependency "activerecord"
s.add_dependency "vault", "~> 0.7"
s.add_dependency "tzinfo-data"

s.add_development_dependency "appraisal", "~> 2.1"
s.add_development_dependency "bundler"
s.add_development_dependency "rails", ">= 4.2"
s.add_development_dependency "rails", "~> 6"
s.add_development_dependency "byebug"
s.add_development_dependency "pry"
s.add_development_dependency "rake"
s.add_development_dependency "rspec", "~> 3.2"
s.add_development_dependency "sqlite3", '~> 1.3'
s.add_development_dependency "sqlite3", '~> 1.4'
s.add_development_dependency "oj"
end
1 change: 1 addition & 0 deletions gemfiles/.bundle/config
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
---
BUNDLE_RETRY: "1"
BUNDLE_WITH: "development"
8 changes: 8 additions & 0 deletions gemfiles/rails_7.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "rails", "~> 7"
gem "sqlite3", "~> 1.4"

gemspec path: "../"

0 comments on commit be401b3

Please sign in to comment.