dm-svn 0.2.1 → 0.2.2

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/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.1
1
+ 0.2.2
data/dm-svn.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{dm-svn}
8
- s.version = "0.2.1"
8
+ s.version = "0.2.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Jared Morgan"]
12
- s.date = %q{2009-10-11}
12
+ s.date = %q{2009-11-01}
13
13
  s.description = %q{dm-svn allows you to store data in a Subversion
14
14
  repository, then sync that data to a DataMapper model (for example, to a
15
15
  relational database. Essentially, it allows you app quicker access to the
@@ -117,7 +117,7 @@ module DmSvn
117
117
  # clarity.
118
118
  def yaml_split
119
119
  data[0].gsub!("\r", "")
120
- ary = data[0].split("\n...\n")
120
+ ary = data[0].split(/\n\.\.\.\n|\n---\n/,2)
121
121
  ary[1] = ary[1].lstrip
122
122
  ary
123
123
  end
data/lib/dm-svn.rb CHANGED
@@ -5,7 +5,7 @@ require 'dm-validations'
5
5
  require 'svn/client'
6
6
 
7
7
  module DmSvn
8
- VERSION = '0.2.0'
8
+ VERSION = '0.2.2'
9
9
  end
10
10
 
11
11
  require 'dm-svn/config'
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dm-svn
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jared Morgan
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-10-11 00:00:00 -05:00
12
+ date: 2009-11-01 00:00:00 -05:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency