Skip to content

Commit

Permalink
Merge pull request #282 from winebarrel/update_rails
Browse files Browse the repository at this point in the history
Update rails
  • Loading branch information
winebarrel committed Aug 17, 2019
2 parents 3311653 + ab3a8ba commit 74efcc0
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ appraise 'activerecord-5.2' do
end

appraise 'activerecord-6.0' do
gem 'activerecord', '~> 6.0.0.rc2'
gem 'activerecord', '~> 6.0.0'
end
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@ It defines DB schema using [Rails DSL](http://guides.rubyonrails.org/migrations.
(like Chef/Puppet)

[![Gem Version](https://badge.fury.io/rb/ridgepole.svg)](http://badge.fury.io/rb/ridgepole)
[![Unstable Version](https://img.shields.io/badge/unstable-0.8.0.rc2-green.svg?longCache=true&style=flat)](https://rubygems.org/gems/ridgepole/versions/0.8.0.rc2)
[![Build Status](https://travis-ci.org/winebarrel/ridgepole.svg?branch=0.7)](https://travis-ci.org/winebarrel/ridgepole)
[![Coverage Status](https://coveralls.io/repos/github/winebarrel/ridgepole/badge.svg?branch=0.7)](https://coveralls.io/github/winebarrel/ridgepole?branch=0.7)
[![Build Status](https://travis-ci.org/winebarrel/ridgepole.svg?branch=0.8)](https://travis-ci.org/winebarrel/ridgepole)
[![Coverage Status](https://coveralls.io/repos/github/winebarrel/ridgepole/badge.svg?branch=0.8)](https://coveralls.io/github/winebarrel/ridgepole?branch=0.8)

<details><summary>ChangeLog</summary>

Expand Down Expand Up @@ -100,6 +99,8 @@ It defines DB schema using [Rails DSL](http://guides.rubyonrails.org/migrations.
* Support URI query string ([pull#273](https://github.com/winebarrel/ridgepole/pull/273))
* `>= 0.7.8`
* Fix for `add_foreign_key(..., column: ,,,)` ([pull#278](https://github.com/winebarrel/ridgepole/pull/278))
* `>= 0.8.0`
* Support Rails 6.0
</details>

## Installation
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/activerecord_6.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

source "https://rubygems.org"

gem "activerecord", "~> 6.0.0.rc2"
gem "activerecord", "~> 6.0.0"

gemspec path: "../"
2 changes: 1 addition & 1 deletion lib/ridgepole/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Ridgepole
VERSION = '0.8.0.rc2'
VERSION = '0.8.0'
end
2 changes: 1 addition & 1 deletion ridgepole.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Gem::Specification.new do |spec|

spec.required_ruby_version = Gem::Requirement.new('>= 2.2.7')

spec.add_dependency 'activerecord', '>= 5.0.1', '< 6'
spec.add_dependency 'activerecord', '>= 5.0.1', '< 6.1'
spec.add_dependency 'diffy'

spec.add_development_dependency 'appraisal', '>= 2.2.0'
Expand Down

0 comments on commit 74efcc0

Please sign in to comment.