dm-mapping 0.6.0 → 0.6.1

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.
data/CHANGES CHANGED
@@ -1,5 +1,8 @@
1
1
  = dm-mapper changes history
2
2
 
3
+ === dm-mapping 0.6.1, 2008-08-22
4
+ * gem 'dm-core', '>=0.9.3' instead of '=0.9.3'
5
+
3
6
  === dm-mapping 0.6.0, 2008-08-16
4
7
  * mapping returns an array of properties indicating fields it mapped.
5
8
  * performance boosted by refactored mapping implementation.
data/README CHANGED
@@ -1,4 +1,4 @@
1
- = dm-mapping 0.6.0
1
+ = dm-mapping 0.6.1
2
2
  by Lin Jen-Shin (a.k.a. godfat-真常[http://godfat.org])
3
3
  godfat (XD) godfat.org
4
4
 
data/dm-mapping.gemspec CHANGED
@@ -1,11 +1,11 @@
1
1
 
2
2
  Gem::Specification.new do |s|
3
3
  s.name = %q{dm-mapping}
4
- s.version = "0.6.0"
4
+ s.version = "0.6.1"
5
5
 
6
6
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
7
7
  s.authors = ["Lin Jen-Shin (a.k.a. godfat \347\234\237\345\270\270)"]
8
- s.date = %q{2008-08-16}
8
+ s.date = %q{2008-08-22}
9
9
  s.description = %q{DataMapper plugin that helps you manipulate an existing database. It creates mappings between existing columns and model's properties.}
10
10
  s.email = %q{godfat (XD) godfat.org}
11
11
  s.extra_rdoc_files = ["CHANGES", "LICENSE", "NOTICE", "README", "TODO", "dm-mapping.gemspec"]
data/lib/dm-mapping.rb CHANGED
@@ -1,7 +1,9 @@
1
1
 
2
- gem 'dm-core', '=0.9.3'
2
+ gem 'dm-core', '>=0.9.3'
3
3
  require 'dm-core'
4
- require 'extlib'
4
+
5
+ require 'extlib/hook'
6
+ require 'extlib/inflection'
5
7
 
6
8
  module DataMapper
7
9
  include Extlib::Hook
@@ -1,5 +1,5 @@
1
1
  module DataMapper
2
2
  module Mapping
3
- VERSION = '0.6.0' unless defined?(DataMapper::Mapping::VERSION)
3
+ VERSION = '0.6.1' unless defined?(DataMapper::Mapping::VERSION)
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dm-mapping
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - "Lin Jen-Shin (a.k.a. godfat \xE7\x9C\x9F\xE5\xB8\xB8)"
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-08-17 00:00:00 +08:00
12
+ date: 2008-08-22 00:00:00 +08:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency