Skip to content

Commit

Permalink
Version bump and doc updates
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
danmcclain committed Aug 23, 2013
1 parent 67f69f6 commit e44c16d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# PostgresExt

Provides a helpful querying API for Rails 4 + PostgreSQL
Adds missing native PostgreSQL data types to ActiveRecord and convenient querying extensions for ActiveRecord and Arel

[![Build Status](https://secure.travis-ci.org/dockyard/postgres_ext.png?branch=master)](http://travis-ci.org/dockyard/postgres_ext)
[![Code Climate](https://codeclimate.com/badge.png)](https://codeclimate.com/github/dockyard/postgres_ext)
Expand Down Expand Up @@ -34,10 +34,15 @@ Or install it yourself as:
## Usage

Just `require 'postgres_ext'` and use ActiveRecord as you normally would! postgres\_ext extends
ActiveRecord's data type handling.
ActiveRecord's data type handling and query methods in both Arel and
ActiveRecord.

* [Querying PostgreSQL datatypes](docs/querying.md)

Where are the datatypes from PostgresExt 1.x? ActiveRecord 4.x includes
all the data types that PostgresExt added to ActiveRecord 3.2.x. We'll
be adding more datatypes as we come across them.

## Authors

Dan McClain [twitter](http://twitter.com/_danmcclain) [github](http://github.com/danmcclain)
Expand Down
2 changes: 1 addition & 1 deletion lib/postgres_ext/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module PostgresExt
VERSION = '0.4.0'
VERSION = '2.0.0'
end
6 changes: 4 additions & 2 deletions postgres_ext.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ require File.expand_path('../lib/postgres_ext/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Dan McClain"]
gem.email = ["[email protected]"]
gem.description = %q{Provides a helpful querying API for Rails 4 + PostgreSQL}
gem.summary = %q{Provides a helpful querying API for Rails 4 + PostgreSQL}
gem.description = %q{Adds missing native PostgreSQL data types to ActiveRecord and convenient querying extensions for ActiveRecord and Arel}
gem.summary = %q{Extends ActiveRecord to handle native PostgreSQL data types}
gem.homepage = ""
gem.license = ['MIT']

gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
Expand All @@ -16,6 +17,7 @@ Gem::Specification.new do |gem|
gem.version = PostgresExt::VERSION

gem.add_dependency 'activerecord', '~> 4.0.0'
gem.add_dependency 'arel', '~> 4.0.0'
gem.add_dependency 'pg_array_parser', '~> 0.0.9'

gem.add_development_dependency 'rails', '~> 4.0.0'
Expand Down

0 comments on commit e44c16d

Please sign in to comment.