dm-timestamps 0.10.2 → 1.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore ADDED
@@ -0,0 +1,36 @@
1
+ ## MAC OS
2
+ .DS_Store
3
+
4
+ ## TEXTMATE
5
+ *.tmproj
6
+ tmtags
7
+
8
+ ## EMACS
9
+ *~
10
+ \#*
11
+ .\#*
12
+
13
+ ## VIM
14
+ *.swp
15
+
16
+ ## Rubinius
17
+ *.rbc
18
+
19
+ ## PROJECT::GENERAL
20
+ *.gem
21
+ coverage
22
+ rdoc
23
+ pkg
24
+ tmp
25
+ doc
26
+ log
27
+ .yardoc
28
+ measurements
29
+
30
+ ## BUNDLER
31
+ .bundle
32
+ Gemfile.local
33
+ Gemfile.lock
34
+
35
+ ## PROJECT::SPECIFIC
36
+ spec/db/
data/Gemfile ADDED
@@ -0,0 +1,141 @@
1
+ # If you're working on more than one datamapper gem at a time, then it's
2
+ # recommended to create a local Gemfile and use this instead of the git
3
+ # sources. This will make sure that you are developing against your
4
+ # other local datamapper sources that you currently work on. Gemfile.local
5
+ # will behave identically to the standard Gemfile apart from the fact that
6
+ # it fetches the datamapper gems from local paths. This means that you can use
7
+ # the same environment variables, like ADAPTER(S) or PLUGIN(S) when running
8
+ # bundle commands. Gemfile.local is added to .gitignore, so you don't need to
9
+ # worry about accidentally checking local development paths into git.
10
+ # In order to create a local Gemfile, all you need to do is run:
11
+ #
12
+ # bundle exec rake local_gemfile
13
+ #
14
+ # This will give you a Gemfile.local file that points to your local clones of
15
+ # the various datamapper gems. It's assumed that all datamapper repo clones
16
+ # reside in the same directory. You can use the Gemfile.local like so for
17
+ # running any bundle command:
18
+ #
19
+ # BUNDLE_GEMFILE=Gemfile.local bundle foo
20
+ #
21
+ # You can also specify which adapter(s) should be part of the bundle by setting
22
+ # an environment variable. This of course also works when using the Gemfile.local
23
+ #
24
+ # bundle foo # dm-sqlite-adapter
25
+ # ADAPTER=mysql bundle foo # dm-mysql-adapter
26
+ # ADAPTERS=sqlite,mysql bundle foo # dm-sqlite-adapter and dm-mysql-adapter
27
+ #
28
+ # Of course you can also use the ADAPTER(S) variable when using the Gemfile.local
29
+ # and running specs against selected adapters.
30
+ #
31
+ # For easily working with adapters supported on your machine, it's recommended
32
+ # that you first install all adapters that you are planning to use or work on
33
+ # by doing something like
34
+ #
35
+ # ADAPTERS=sqlite,mysql,postgres bundle install
36
+ #
37
+ # This will clone the various repositories and make them available to bundler.
38
+ # Once you have them installed you can easily switch between adapters for the
39
+ # various development tasks. Running something like
40
+ #
41
+ # ADAPTER=mysql bundle exec rake spec
42
+ #
43
+ # will make sure that the dm-mysql-adapter is part of the bundle, and will be used
44
+ # when running the specs.
45
+ #
46
+ # You can also specify which plugin(s) should be part of the bundle by setting
47
+ # an environment variable. This also works when using the Gemfile.local
48
+ #
49
+ # bundle foo # dm-migrations
50
+ # PLUGINS=dm-validations bundle foo # dm-migrations and dm-validations
51
+ # PLUGINS=dm-validations,dm-types bundle foo # dm-migrations, dm-validations and dm-types
52
+ #
53
+ # Of course you can combine the PLUGIN(S) and ADAPTER(S) env vars to run specs
54
+ # for certain adapter/plugin combinations.
55
+ #
56
+ # Finally, to speed up running specs and other tasks, it's recommended to run
57
+ #
58
+ # bundle lock
59
+ #
60
+ # after running 'bundle install' for the first time. This will make 'bundle exec' run
61
+ # a lot faster compared to the unlocked version. With an unlocked bundle you would
62
+ # typically just run 'bundle install' from time to time to fetch the latest sources from
63
+ # upstream. When you locked your bundle, you need to run
64
+ #
65
+ # bundle install --relock
66
+ #
67
+ # to make sure to fetch the latest updates and then lock the bundle again. Gemfile.lock
68
+ # is added to the .gitignore file, so you don't need to worry about accidentally checking
69
+ # it into version control.
70
+
71
+ source 'http://rubygems.org'
72
+
73
+ DATAMAPPER = 'git://github.com/datamapper'
74
+ DM_VERSION = '~> 1.0.0.rc1'
75
+
76
+ group :runtime do # Runtime dependencies (as in the gemspec)
77
+
78
+ if ENV['EXTLIB']
79
+ gem 'extlib', '~> 0.9.15', :git => "#{DATAMAPPER}/extlib.git"
80
+ else
81
+ gem 'activesupport', '~> 3.0.0.beta3', :git => 'git://github.com/rails/rails.git', :require => nil
82
+ end
83
+
84
+ gem 'dm-core', DM_VERSION, :git => "#{DATAMAPPER}/dm-core.git"
85
+
86
+ end
87
+
88
+ group(:development) do # Development dependencies (as in the gemspec)
89
+
90
+ gem 'rake', '~> 0.8.7'
91
+ gem 'rspec', '~> 1.3'
92
+ gem 'jeweler', '~> 1.4'
93
+
94
+ end
95
+
96
+ group :quality do # These gems contain rake tasks that check the quality of the source code
97
+
98
+ gem 'metric_fu', '~> 1.3'
99
+ gem 'rcov', '~> 0.9.7'
100
+ gem 'reek', '~> 1.2.7'
101
+ gem 'roodi', '~> 2.1'
102
+ gem 'yard', '~> 0.5'
103
+ gem 'yardstick', '~> 0.1'
104
+
105
+ end
106
+
107
+ group :datamapper do # We need this because we want to pin these dependencies to their git master sources
108
+
109
+ adapters = ENV['ADAPTER'] || ENV['ADAPTERS']
110
+ adapters = adapters.to_s.gsub(',',' ').split(' ') - ['in_memory']
111
+
112
+ unless adapters.empty?
113
+
114
+ DO_VERSION = '~> 0.10.2'
115
+ DM_DO_ADAPTERS = %w[sqlite postgres mysql oracle sqlserver]
116
+
117
+ gem 'data_objects', DO_VERSION, :git => "#{DATAMAPPER}/do.git"
118
+
119
+ adapters.each do |adapter|
120
+ if DM_DO_ADAPTERS.any? { |dm_do_adapter| dm_do_adapter =~ /#{adapter}/ }
121
+ adapter = 'sqlite3' if adapter == 'sqlite'
122
+ gem "do_#{adapter}", DO_VERSION, :git => "#{DATAMAPPER}/do.git"
123
+ end
124
+ end
125
+
126
+ gem 'dm-do-adapter', DM_VERSION, :git => "#{DATAMAPPER}/dm-do-adapter.git"
127
+
128
+ adapters.each do |adapter|
129
+ gem "dm-#{adapter}-adapter", DM_VERSION, :git => "#{DATAMAPPER}/dm-#{adapter}-adapter.git"
130
+ end
131
+
132
+ end
133
+
134
+ plugins = ENV['PLUGINS'] || ENV['PLUGIN']
135
+ plugins = (plugins.to_s.gsub(',',' ').split(' ') + ['dm-migrations']).uniq
136
+
137
+ plugins.each do |plugin|
138
+ gem plugin, DM_VERSION, :git => "#{DATAMAPPER}/#{plugin}.git"
139
+ end
140
+
141
+ end
data/Rakefile CHANGED
@@ -15,10 +15,9 @@ begin
15
15
 
16
16
  gem.rubyforge_project = 'datamapper'
17
17
 
18
- gem.add_dependency 'dm-core', '~> 0.10.2'
18
+ gem.add_dependency 'dm-core', '~> 1.0.0.rc1'
19
19
 
20
- gem.add_development_dependency 'rspec', '~> 1.2.9'
21
- gem.add_development_dependency 'yard', '~> 0.4.0'
20
+ gem.add_development_dependency 'rspec', '~> 1.3'
22
21
  end
23
22
 
24
23
  Jeweler::GemcutterTasks.new
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.10.2
1
+ 1.0.0.rc1
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{dm-timestamps}
8
- s.version = "0.10.2"
8
+ s.version = "1.0.0.rc1"
9
9
 
10
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
10
+ s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Foy Savas"]
12
- s.date = %q{2009-12-11}
12
+ s.date = %q{2010-05-19}
13
13
  s.description = %q{DataMapper plugin for magical timestamps}
14
14
  s.email = %q{foysavas [a] gmail [d] com}
15
15
  s.extra_rdoc_files = [
@@ -17,7 +17,9 @@ Gem::Specification.new do |s|
17
17
  "README.rdoc"
18
18
  ]
19
19
  s.files = [
20
- "LICENSE",
20
+ ".gitignore",
21
+ "Gemfile",
22
+ "LICENSE",
21
23
  "README.rdoc",
22
24
  "Rakefile",
23
25
  "VERSION",
@@ -28,6 +30,7 @@ Gem::Specification.new do |s|
28
30
  "spec/spec.opts",
29
31
  "spec/spec_helper.rb",
30
32
  "tasks/ci.rake",
33
+ "tasks/local_gemfile.rake",
31
34
  "tasks/metrics.rake",
32
35
  "tasks/spec.rake",
33
36
  "tasks/yard.rake",
@@ -37,26 +40,27 @@ Gem::Specification.new do |s|
37
40
  s.rdoc_options = ["--charset=UTF-8"]
38
41
  s.require_paths = ["lib"]
39
42
  s.rubyforge_project = %q{datamapper}
40
- s.rubygems_version = %q{1.3.5}
43
+ s.rubygems_version = %q{1.3.6}
41
44
  s.summary = %q{DataMapper plugin for magical timestamps}
45
+ s.test_files = [
46
+ "spec/integration/timestamps_spec.rb",
47
+ "spec/spec_helper.rb"
48
+ ]
42
49
 
43
50
  if s.respond_to? :specification_version then
44
51
  current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
45
52
  s.specification_version = 3
46
53
 
47
54
  if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
48
- s.add_runtime_dependency(%q<dm-core>, ["~> 0.10.2"])
49
- s.add_development_dependency(%q<rspec>, ["~> 1.2.9"])
50
- s.add_development_dependency(%q<yard>, ["~> 0.4.0"])
55
+ s.add_runtime_dependency(%q<dm-core>, ["~> 1.0.0.rc1"])
56
+ s.add_development_dependency(%q<rspec>, ["~> 1.3"])
51
57
  else
52
- s.add_dependency(%q<dm-core>, ["~> 0.10.2"])
53
- s.add_dependency(%q<rspec>, ["~> 1.2.9"])
54
- s.add_dependency(%q<yard>, ["~> 0.4.0"])
58
+ s.add_dependency(%q<dm-core>, ["~> 1.0.0.rc1"])
59
+ s.add_dependency(%q<rspec>, ["~> 1.3"])
55
60
  end
56
61
  else
57
- s.add_dependency(%q<dm-core>, ["~> 0.10.2"])
58
- s.add_dependency(%q<rspec>, ["~> 1.2.9"])
59
- s.add_dependency(%q<yard>, ["~> 0.4.0"])
62
+ s.add_dependency(%q<dm-core>, ["~> 1.0.0.rc1"])
63
+ s.add_dependency(%q<rspec>, ["~> 1.3"])
60
64
  end
61
65
  end
62
66
 
data/lib/dm-timestamps.rb CHANGED
@@ -1,10 +1,12 @@
1
+ require 'dm-core'
2
+
1
3
  module DataMapper
2
4
  module Timestamps
3
5
  TIMESTAMP_PROPERTIES = {
4
- :updated_at => [ DateTime, lambda { |r, p| DateTime.now } ],
5
- :updated_on => [ Date, lambda { |r, p| Date.today } ],
6
- :created_at => [ DateTime, lambda { |r, p| r.created_at || (DateTime.now if r.new?) } ],
7
- :created_on => [ Date, lambda { |r, p| r.created_on || (Date.today if r.new?) } ],
6
+ :updated_at => [ DateTime, lambda { |r| DateTime.now } ],
7
+ :updated_on => [ Date, lambda { |r| Date.today } ],
8
+ :created_at => [ DateTime, lambda { |r| r.created_at || (DateTime.now if r.new?) } ],
9
+ :created_on => [ Date, lambda { |r| r.created_on || (Date.today if r.new?) } ],
8
10
  }.freeze
9
11
 
10
12
  def self.included(model)
@@ -27,8 +29,8 @@ module DataMapper
27
29
 
28
30
  def set_timestamps
29
31
  TIMESTAMP_PROPERTIES.each do |name,(_type,proc)|
30
- if property = properties[name]
31
- property.set(self, proc.call(self, property))
32
+ if properties.named?(name)
33
+ attribute_set(name, proc.call(self))
32
34
  end
33
35
  end
34
36
  end
@@ -40,8 +42,13 @@ module DataMapper
40
42
  names.each do |name|
41
43
  case name
42
44
  when *TIMESTAMP_PROPERTIES.keys
43
- type = TIMESTAMP_PROPERTIES[name].first
44
- property name, type, :required => true, :auto_validation => false
45
+ options = { :required => true }
46
+
47
+ if Property.accepted_options.include?(:auto_validation)
48
+ options.update(:auto_validation => false)
49
+ end
50
+
51
+ property name, TIMESTAMP_PROPERTIES[name].first, options
45
52
  when :at
46
53
  timestamps(:created_at, :updated_at)
47
54
  when :on
@@ -1,7 +1,9 @@
1
1
  require 'spec_helper'
2
2
 
3
- if HAS_SQLITE3 || HAS_MYSQL || HAS_POSTGRES
4
- describe 'DataMapper::Timestamp' do
3
+ describe 'DataMapper::Timestamp' do
4
+
5
+ supported_by :all do
6
+
5
7
  describe "Timestamp (shared behavior)", :shared => true do
6
8
  it "should not set the created_at/on fields if they're already set" do
7
9
  green_smoothie = GreenSmoothie.new(:name => 'Banana')
@@ -115,10 +117,28 @@ if HAS_SQLITE3 || HAS_MYSQL || HAS_POSTGRES
115
117
 
116
118
  property :id, Serial
117
119
  property :name, String
118
- property :created_at, DateTime, :required => true, :auto_validation => false
119
- property :created_on, Date, :required => true, :auto_validation => false
120
- property :updated_at, DateTime, :required => true, :auto_validation => false
121
- property :updated_on, Date, :required => true, :auto_validation => false
120
+ property :created_at, DateTime, :required => true
121
+ property :created_on, Date, :required => true
122
+ property :updated_at, DateTime, :required => true
123
+ property :updated_on, Date, :required => true
124
+
125
+ auto_migrate!
126
+ end
127
+ end
128
+
129
+ it_should_behave_like "Timestamp (shared behavior)"
130
+ end
131
+
132
+ describe "implicit property declaration" do
133
+ before do
134
+ Object.send(:remove_const, :GreenSmoothie) if defined?(GreenSmoothie)
135
+ class GreenSmoothie
136
+ include DataMapper::Resource
137
+
138
+ property :id, Serial
139
+ property :name, String
140
+
141
+ timestamps :at, :on
122
142
 
123
143
  auto_migrate!
124
144
  end
@@ -143,18 +163,18 @@ if HAS_SQLITE3 || HAS_MYSQL || HAS_POSTGRES
143
163
  @klass.timestamps :at
144
164
 
145
165
  @klass.properties.should be_named(:created_at)
146
- @klass.properties[:created_at].type.should == DateTime
166
+ @klass.properties[:created_at].should be_kind_of(DataMapper::Property::DateTime)
147
167
  @klass.properties.should be_named(:updated_at)
148
- @klass.properties[:updated_at].type.should == DateTime
168
+ @klass.properties[:updated_at].should be_kind_of(DataMapper::Property::DateTime)
149
169
  end
150
170
 
151
171
  it "should set the *on properties" do
152
172
  @klass.timestamps :on
153
173
 
154
174
  @klass.properties.should be_named(:created_on)
155
- @klass.properties[:created_on].type.should == Date
175
+ @klass.properties[:created_on].should be_kind_of(DataMapper::Property::Date)
156
176
  @klass.properties.should be_named(:updated_on)
157
- @klass.properties[:updated_on].type.should == Date
177
+ @klass.properties[:updated_on].should be_kind_of(DataMapper::Property::Date)
158
178
  end
159
179
 
160
180
  it "should set multiple properties" do
@@ -172,24 +192,8 @@ if HAS_SQLITE3 || HAS_MYSQL || HAS_POSTGRES
172
192
  lambda { @klass.timestamps }.should raise_error(ArgumentError)
173
193
  end
174
194
  end
175
-
176
- describe "behavior" do
177
- before do
178
- Object.send(:remove_const, :GreenSmoothie) if defined?(GreenSmoothie)
179
- class GreenSmoothie
180
- include DataMapper::Resource
181
-
182
- property :id, Serial
183
- property :name, String
184
-
185
- timestamps :at, :on
186
-
187
- auto_migrate!
188
- end
189
- end
190
-
191
- it_should_behave_like "Timestamp (shared behavior)"
192
- end
193
195
  end
196
+
194
197
  end
198
+
195
199
  end
data/spec/spec_helper.rb CHANGED
@@ -1,35 +1,11 @@
1
- require 'rubygems'
2
-
3
- # Use local dm-core if running from a typical dev checkout.
4
- lib = File.join('..', '..', 'dm-core', 'lib')
5
- $LOAD_PATH.unshift(lib) if File.directory?(lib)
6
- require 'dm-core'
7
-
8
- # Use local dm-validations if running from a typical dev checkout.
9
- lib = File.join('..', 'dm-validations', 'lib')
10
- $LOAD_PATH.unshift(lib) if File.directory?(lib)
11
- require 'dm-validations'
12
-
13
- # Support running specs with 'rake spec' and 'spec'
14
- $LOAD_PATH.unshift('lib') unless $LOAD_PATH.include?('lib')
1
+ require 'dm-core/spec/setup'
2
+ require 'dm-core/spec/lib/adapter_helpers'
15
3
 
16
4
  require 'dm-timestamps'
5
+ require 'dm-migrations'
17
6
 
18
- def load_driver(name, default_uri)
19
- return false if ENV['ADAPTER'] != name.to_s
7
+ DataMapper::Spec.setup
20
8
 
21
- begin
22
- DataMapper.setup(name, ENV["#{name.to_s.upcase}_SPEC_URI"] || default_uri)
23
- DataMapper::Repository.adapters[:default] = DataMapper::Repository.adapters[name]
24
- true
25
- rescue LoadError => e
26
- warn "Could not load do_#{name}: #{e}"
27
- false
28
- end
9
+ Spec::Runner.configure do |config|
10
+ config.extend(DataMapper::Spec::Adapters::Helpers)
29
11
  end
30
-
31
- ENV['ADAPTER'] ||= 'sqlite3'
32
-
33
- HAS_SQLITE3 = load_driver(:sqlite3, 'sqlite3::memory:')
34
- HAS_MYSQL = load_driver(:mysql, 'mysql://localhost/dm_core_test')
35
- HAS_POSTGRES = load_driver(:postgres, 'postgres://postgres@localhost/dm_core_test')
@@ -0,0 +1,18 @@
1
+ desc "Support bundling from local source code (allows BUNDLE_GEMFILE=Gemfile.local bundle foo)"
2
+ task :local_gemfile do |t|
3
+
4
+ root = Pathname(__FILE__).dirname.parent
5
+ datamapper = root.parent
6
+
7
+ source_regex = /DATAMAPPER = 'git:\/\/github.com\/datamapper'/
8
+ gem_source_regex = /:git => \"#\{DATAMAPPER\}\/(.+?)(?:\.git)?\"/
9
+
10
+ root.join('Gemfile.local').open('w') do |f|
11
+ root.join('Gemfile').open.each do |line|
12
+ line.sub!(source_regex, "DATAMAPPER = '#{datamapper}'")
13
+ line.sub!(gem_source_regex, ':path => "#{DATAMAPPER}/\1"')
14
+ f.puts line
15
+ end
16
+ end
17
+
18
+ end
data/tasks/spec.rake CHANGED
@@ -35,7 +35,4 @@ rescue LoadError
35
35
  end
36
36
  end
37
37
 
38
- task :spec => :check_dependencies
39
- task :rcov => :check_dependencies
40
-
41
38
  task :default => :spec
metadata CHANGED
@@ -1,7 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dm-timestamps
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.2
4
+ prerelease: true
5
+ segments:
6
+ - 1
7
+ - 0
8
+ - 0
9
+ - rc1
10
+ version: 1.0.0.rc1
5
11
  platform: ruby
6
12
  authors:
7
13
  - Foy Savas
@@ -9,39 +15,37 @@ autorequire:
9
15
  bindir: bin
10
16
  cert_chain: []
11
17
 
12
- date: 2009-12-11 00:00:00 -08:00
18
+ date: 2010-05-19 00:00:00 -07:00
13
19
  default_executable:
14
20
  dependencies:
15
21
  - !ruby/object:Gem::Dependency
16
22
  name: dm-core
17
- type: :runtime
18
- version_requirement:
19
- version_requirements: !ruby/object:Gem::Requirement
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
20
25
  requirements:
21
26
  - - ~>
22
27
  - !ruby/object:Gem::Version
23
- version: 0.10.2
24
- version:
28
+ segments:
29
+ - 1
30
+ - 0
31
+ - 0
32
+ - rc1
33
+ version: 1.0.0.rc1
34
+ type: :runtime
35
+ version_requirements: *id001
25
36
  - !ruby/object:Gem::Dependency
26
37
  name: rspec
27
- type: :development
28
- version_requirement:
29
- version_requirements: !ruby/object:Gem::Requirement
38
+ prerelease: false
39
+ requirement: &id002 !ruby/object:Gem::Requirement
30
40
  requirements:
31
41
  - - ~>
32
42
  - !ruby/object:Gem::Version
33
- version: 1.2.9
34
- version:
35
- - !ruby/object:Gem::Dependency
36
- name: yard
43
+ segments:
44
+ - 1
45
+ - 3
46
+ version: "1.3"
37
47
  type: :development
38
- version_requirement:
39
- version_requirements: !ruby/object:Gem::Requirement
40
- requirements:
41
- - - ~>
42
- - !ruby/object:Gem::Version
43
- version: 0.4.0
44
- version:
48
+ version_requirements: *id002
45
49
  description: DataMapper plugin for magical timestamps
46
50
  email: foysavas [a] gmail [d] com
47
51
  executables: []
@@ -52,6 +56,8 @@ extra_rdoc_files:
52
56
  - LICENSE
53
57
  - README.rdoc
54
58
  files:
59
+ - .gitignore
60
+ - Gemfile
55
61
  - LICENSE
56
62
  - README.rdoc
57
63
  - Rakefile
@@ -63,6 +69,7 @@ files:
63
69
  - spec/spec.opts
64
70
  - spec/spec_helper.rb
65
71
  - tasks/ci.rake
72
+ - tasks/local_gemfile.rake
66
73
  - tasks/metrics.rake
67
74
  - tasks/spec.rake
68
75
  - tasks/yard.rake
@@ -80,20 +87,25 @@ required_ruby_version: !ruby/object:Gem::Requirement
80
87
  requirements:
81
88
  - - ">="
82
89
  - !ruby/object:Gem::Version
90
+ segments:
91
+ - 0
83
92
  version: "0"
84
- version:
85
93
  required_rubygems_version: !ruby/object:Gem::Requirement
86
94
  requirements:
87
- - - ">="
95
+ - - ">"
88
96
  - !ruby/object:Gem::Version
89
- version: "0"
90
- version:
97
+ segments:
98
+ - 1
99
+ - 3
100
+ - 1
101
+ version: 1.3.1
91
102
  requirements: []
92
103
 
93
104
  rubyforge_project: datamapper
94
- rubygems_version: 1.3.5
105
+ rubygems_version: 1.3.6
95
106
  signing_key:
96
107
  specification_version: 3
97
108
  summary: DataMapper plugin for magical timestamps
98
- test_files: []
99
-
109
+ test_files:
110
+ - spec/integration/timestamps_spec.rb
111
+ - spec/spec_helper.rb