dm-serializer 0.9.10 → 0.9.11

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,7 @@
1
+ === 0.9.11 / 2009-03-29
2
+
3
+ * No changes this version
4
+
1
5
  === 0.9.10 / 2009-01-19
2
6
 
3
7
  * 1 minor enhancement:
data/Rakefile CHANGED
@@ -12,7 +12,7 @@ AUTHOR = 'Guy van den Berg'
12
12
  EMAIL = 'vandenberg.guy [a] gmail [d] com'
13
13
  GEM_NAME = 'dm-serializer'
14
14
  GEM_VERSION = DataMapper::Serializer::VERSION
15
- GEM_DEPENDENCIES = [['dm-core', "~>#{GEM_VERSION}"]]
15
+ GEM_DEPENDENCIES = [['dm-core', GEM_VERSION]]
16
16
  GEM_CLEAN = %w[ log pkg coverage ]
17
17
  GEM_EXTRAS = { :has_rdoc => true, :extra_rdoc_files => %w[ README.textile LICENSE TODO History.txt ] }
18
18
 
@@ -1,7 +1,7 @@
1
1
  require "rubygems"
2
2
  require 'pathname'
3
3
 
4
- gem 'dm-core', '~>0.9.10'
4
+ gem 'dm-core', '0.9.11'
5
5
  require 'dm-core'
6
6
 
7
7
  spec_dir_path = Pathname(__FILE__).dirname.expand_path
@@ -1,5 +1,5 @@
1
1
  module DataMapper
2
2
  module Serializer
3
- VERSION = '0.9.10'
3
+ VERSION = '0.9.11'
4
4
  end
5
5
  end
@@ -62,7 +62,7 @@ require Pathname(__FILE__).dirname.expand_path.parent + 'spec_helper'
62
62
  it "should not include the XML prologue, so that the result can be embedded in other XML documents" do
63
63
  planet = Planet.new
64
64
  xml = planet.to_xml(:element_name => "aplanet")
65
- xml.starts_with?("<?xml").should == false
65
+ xml.should_not =~ /\A<\?xml/
66
66
  end
67
67
 
68
68
  describe ':element_name option for Resource' do
@@ -1,7 +1,7 @@
1
1
  require 'pathname'
2
2
  require 'rubygems'
3
3
 
4
- gem 'dm-core', '~>0.9.10'
4
+ gem 'dm-core', '0.9.11'
5
5
  require 'dm-core'
6
6
 
7
7
  spec_dir_path = Pathname(__FILE__).dirname.expand_path
@@ -1,5 +1,5 @@
1
1
  begin
2
- gem 'rspec', '~>1.1.11'
2
+ gem 'rspec', '~>1.2'
3
3
  require 'spec'
4
4
  require 'spec/rake/spectask'
5
5
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dm-serializer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.10
4
+ version: 0.9.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Guy van den Berg
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-01-19 00:00:00 -08:00
12
+ date: 2009-03-29 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -18,9 +18,9 @@ dependencies:
18
18
  version_requirement:
19
19
  version_requirements: !ruby/object:Gem::Requirement
20
20
  requirements:
21
- - - ~>
21
+ - - "="
22
22
  - !ruby/object:Gem::Version
23
- version: 0.9.10
23
+ version: 0.9.11
24
24
  version:
25
25
  description: DataMapper plugin for serializing DataMapper objects
26
26
  email: