-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
12 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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") | ||
|
@@ -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' | ||
|