namelessjon-dm-gen 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.rdoc CHANGED
@@ -1,3 +1,15 @@
1
+ === 0.3.0 / 2009-07-10
2
+
3
+ * Updated dm version to 0.10.0
4
+ * Stopped adding a specific gem dependency line to one file scripts
5
+ * Now generates adapters in the 0.10.0 API pattern.
6
+
7
+ === 0.2.5 / 2009-05-23
8
+
9
+ * Fixed extra deps addition in Rakefile
10
+ * Updated dm version to 0.9.11
11
+ * Thanks to irjudson for pointing out problems.
12
+
1
13
  === 0.2.4 / 2009-02-19
2
14
 
3
15
  * Small improvements to the Rakefile
data/README.rdoc CHANGED
@@ -39,6 +39,8 @@ adaptor API.
39
39
 
40
40
  dm-gen adapter example
41
41
 
42
+ NB: This generates adapters with the 0.10.x API NOT the 0.9.x API. So make sure
43
+ you're running DM from the next branch, or from http://gems.datamapper.org/
42
44
 
43
45
  == COPYRIGHT
44
46
 
@@ -35,7 +35,6 @@ shared "one file generator" do
35
35
 
36
36
  it "requires dm-core" do
37
37
  @result.should.match(/require 'dm-core'/)
38
- @result.should.match(/gem\('dm-core', '~> 0.9.11'\)/)
39
38
  end
40
39
 
41
40
  # other boilerplate
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: namelessjon-dm-gen
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Stott
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-07-10 00:00:00 -07:00
12
+ date: 2009-08-30 00:00:00 -07:00
13
13
  default_executable: dm-gen
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.5.0
23
+ version: "1.0"
24
24
  version:
25
25
  description: Simple commandline tool for generating dm models
26
26
  email: jonathan.stott@gmail.com
@@ -100,8 +100,8 @@ signing_key:
100
100
  specification_version: 3
101
101
  summary: Simple commandline tool for generating dm models
102
102
  test_files:
103
- - spec/is_plugin_spec.rb
104
103
  - spec/dm_gen_spec.rb
105
- - spec/adapter_spec.rb
106
104
  - spec/spec_helper.rb
105
+ - spec/adapter_spec.rb
106
+ - spec/is_plugin_spec.rb
107
107
  - spec/one_file_spec.rb