dm-sweatshop 0.9.5 → 0.9.6

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -50,7 +50,7 @@ end
50
50
  desc 'Run specifications'
51
51
  Spec::Rake::SpecTask.new(:spec) do |t|
52
52
  t.spec_opts << '--options' << 'spec/spec.opts' if File.exists?('spec/spec.opts')
53
- t.spec_files = Pathname.glob(Pathname.new(__FILE__).dirname + 'spec/**/*_spec.rb')
53
+ t.spec_files = Pathname.glob((ROOT + 'spec/**/*_spec.rb').to_s)
54
54
 
55
55
  begin
56
56
  t.rcov = ENV.has_key?('NO_RCOV') ? ENV['NO_RCOV'] != 'true' : true
data/lib/dm-sweatshop.rb CHANGED
@@ -8,4 +8,4 @@ dir = Pathname(__FILE__).dirname.expand_path / 'dm-sweatshop'
8
8
 
9
9
  require dir / "version"
10
10
  require dir / "sweatshop"
11
- require dir / "model"
11
+ require dir / "model"
@@ -32,4 +32,4 @@ module DataMapper
32
32
  :default
33
33
  end
34
34
  end
35
- end
35
+ end
@@ -46,4 +46,4 @@ module DataMapper
46
46
  end
47
47
  end
48
48
  end
49
- end
49
+ end
@@ -1,5 +1,5 @@
1
1
  module DataMapper
2
2
  class Sweatshop
3
- VERSION = "0.9.5"
3
+ VERSION = "0.9.6"
4
4
  end
5
5
  end
@@ -73,4 +73,4 @@ describe DataMapper::Model do
73
73
 
74
74
  Order.gen.widgets.should_not be_empty
75
75
  end
76
- end
76
+ end
@@ -140,4 +140,4 @@ describe DataMapper::Sweatshop do
140
140
  DataMapper::Sweatshop.pick(Parent, :default).should be_is_a(Parent)
141
141
  end
142
142
  end
143
- end
143
+ end
data/spec/spec_helper.rb CHANGED
@@ -6,4 +6,4 @@ require 'dm-sweatshop'
6
6
  DataMapper.setup(:default, 'sqlite3::memory:')
7
7
 
8
8
  Spec::Runner.configure do |config|
9
- end
9
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dm-sweatshop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.5
4
+ version: 0.9.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Burkert
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-08-28 00:00:00 -05:00
12
+ date: 2008-10-12 00:00:00 -06:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -20,7 +20,7 @@ dependencies:
20
20
  requirements:
21
21
  - - "="
22
22
  - !ruby/object:Gem::Version
23
- version: 0.9.5
23
+ version: 0.9.6
24
24
  version:
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: randexp
@@ -34,13 +34,13 @@ dependencies:
34
34
  version:
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: hoe
37
- type: :runtime
37
+ type: :development
38
38
  version_requirement:
39
39
  version_requirements: !ruby/object:Gem::Requirement
40
40
  requirements:
41
41
  - - ">="
42
42
  - !ruby/object:Gem::Version
43
- version: 1.6.0
43
+ version: 1.7.0
44
44
  version:
45
45
  description: DataMapper plugin for building pseudo random models
46
46
  email: