diff --git a/README.markdown b/README.markdown index 8722029..d9c72de 100644 --- a/README.markdown +++ b/README.markdown @@ -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: @@ -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. \ No newline at end of file +- 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. \ No newline at end of file diff --git a/activerecord-partitioning.gemspec b/activerecord-partitioning.gemspec index 2187abc..1c99630 100644 --- a/activerecord-partitioning.gemspec +++ b/activerecord-partitioning.gemspec @@ -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 = ["md12@sanger.ac.uk"] gem.description = %q{Adds support for dumping partitioned tables to db/schema.rb} gem.summary = %q{Very simple dumping of partitioned tables in MySQL} @@ -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 diff --git a/lib/activerecord-partitioning/version.rb b/lib/activerecord-partitioning/version.rb index b55f5a4..abea20b 100644 --- a/lib/activerecord-partitioning/version.rb +++ b/lib/activerecord-partitioning/version.rb @@ -1,5 +1,5 @@ module Activerecord module Partitioning - VERSION = "0.0.2" + VERSION = "0.0.3" end end