pg_enum 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. data/VERSION +1 -1
  2. data/pg_enum.gemspec +46 -0
  3. data/rails/init.rb +1 -0
  4. metadata +4 -2
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.2.0
data/pg_enum.gemspec ADDED
@@ -0,0 +1,46 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{pg_enum}
8
+ s.version = "0.2.0"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["BradfordW"]
12
+ s.date = %q{2010-07-22}
13
+ s.description = %q{Adds native enum support to the Rails3 ActiveRecord PostgreSQL adapter}
14
+ s.extra_rdoc_files = [
15
+ "LICENSE",
16
+ "README.rdoc"
17
+ ]
18
+ s.files = [
19
+ ".document",
20
+ ".gitignore",
21
+ "LICENSE",
22
+ "README.rdoc",
23
+ "Rakefile",
24
+ "VERSION",
25
+ "lib/pg_enum.rb",
26
+ "lib/pg_enum/active_record.rb",
27
+ "pg_enum.gemspec",
28
+ "rails/init.rb"
29
+ ]
30
+ s.homepage = %q{http://github.com/bradfordw/pg_enum}
31
+ s.rdoc_options = ["--charset=UTF-8"]
32
+ s.require_paths = ["lib"]
33
+ s.rubygems_version = %q{1.3.6}
34
+ s.summary = %q{Adds native enum support to the Rails3 ActiveRecord PostgreSQL adapter}
35
+
36
+ if s.respond_to? :specification_version then
37
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
38
+ s.specification_version = 3
39
+
40
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
41
+ else
42
+ end
43
+ else
44
+ end
45
+ end
46
+
data/rails/init.rb ADDED
@@ -0,0 +1 @@
1
+ require 'pg_enum'
metadata CHANGED
@@ -4,9 +4,9 @@ version: !ruby/object:Gem::Version
4
4
  prerelease: false
5
5
  segments:
6
6
  - 0
7
- - 1
7
+ - 2
8
8
  - 0
9
- version: 0.1.0
9
+ version: 0.2.0
10
10
  platform: ruby
11
11
  authors:
12
12
  - BradfordW
@@ -36,6 +36,8 @@ files:
36
36
  - VERSION
37
37
  - lib/pg_enum.rb
38
38
  - lib/pg_enum/active_record.rb
39
+ - pg_enum.gemspec
40
+ - rails/init.rb
39
41
  has_rdoc: true
40
42
  homepage: http://github.com/bradfordw/pg_enum
41
43
  licenses: []