Skip to content

Commit

Permalink
Allow any future versions of ActiveRecord, ActiveSupport and RSpec, a…
Browse files Browse the repository at this point in the history
…nd bump to 0.0.3
  • Loading branch information
spikeheap committed Feb 6, 2017
1 parent 604a5a3 commit ed87646
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
5 changes: 3 additions & 2 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ specifically, the mysql2 connection adapter. *And, yes, this is very very alpha

Install with:

gem "activerecord-partitioning", "~> 0.0.2"
gem 'activerecord-partitioning', git: 'https://github.com/growkudos/activerecord-partitioning', tag: '0.0.5'

Usage:

Expand All @@ -25,4 +25,5 @@ Note that `rake db:schema:dump` will output the `partition_table` call for you.
Feel free to fork and submit pull requests.

## Update
Updated in March 2016 by Martyn Whitwell to support Active Record 4 and support pseudo-composite primary keys.
- 2016-03 (Martyn Whitwell): updated to support Active Record 4 and support pseudo-composite primary keys.
- 2017-02 (Ryan Brooks): updated to support Active Record 5.
8 changes: 4 additions & 4 deletions activerecord-partitioning.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require File.expand_path('../lib/activerecord-partitioning/version', __FILE__)

Gem::Specification.new do |gem|
gem.authors = ["Matthew Denner"] # updated by Martyn Whitwell March 2016
gem.authors = ["Matthew Denner"] # updated by Martyn Whitwell March 2016, Ryan Brooks Feb 2017
gem.email = ["[email protected]"]
gem.description = %q{Adds support for dumping partitioned tables to db/schema.rb}
gem.summary = %q{Very simple dumping of partitioned tables in MySQL}
Expand All @@ -15,9 +15,9 @@ Gem::Specification.new do |gem|
gem.require_paths = ["lib"]
gem.version = Activerecord::Partitioning::VERSION

gem.add_dependency "activerecord", "~> 4.2.6"
gem.add_dependency "activesupport", "~> 4.2.6"
gem.add_dependency "activerecord", ">= 4.2.6"
gem.add_dependency "activesupport", ">= 4.2.6"

gem.add_development_dependency "rspec", "~> 3.4.0"
gem.add_development_dependency "rspec", ">= 2.9.0"
gem.add_development_dependency "mysql2"
end
2 changes: 1 addition & 1 deletion lib/activerecord-partitioning/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Activerecord
module Partitioning
VERSION = "0.0.2"
VERSION = "0.0.3"
end
end

0 comments on commit ed87646

Please sign in to comment.