jm81-svn-fixture 0.1.1 → 0.1.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/.gitignore +2 -0
- data/VERSION +1 -1
- data/lib/svn-fixture.rb +6 -4
- data/spec/spec_helper.rb +0 -3
- data/spec/svn-fixture/config_spec.rb +1 -1
- data/spec/svn-fixture/directory_spec.rb +1 -1
- data/spec/svn-fixture/file_spec.rb +1 -1
- data/spec/svn-fixture/integration_spec.rb +1 -1
- data/spec/svn-fixture/repository_spec.rb +1 -1
- data/spec/svn-fixture/revision_spec.rb +1 -1
- data/spec/svn-fixture_spec.rb +1 -1
- data/svn-fixture.gemspec +8 -4
- metadata +6 -5
    
        data/.gitignore
    CHANGED
    
    
    
        data/VERSION
    CHANGED
    
    | @@ -1 +1 @@ | |
| 1 | 
            -
            0.1. | 
| 1 | 
            +
            0.1.3
         | 
    
        data/lib/svn-fixture.rb
    CHANGED
    
    | @@ -8,6 +8,8 @@ require "svn/fs" | |
| 8 8 | 
             
            require "svn/repos"
         | 
| 9 9 |  | 
| 10 10 | 
             
            module SvnFixture
         | 
| 11 | 
            +
              VERSION = '0.1.2'
         | 
| 12 | 
            +
              
         | 
| 11 13 | 
             
              CONFIG_DEFAULTS = {
         | 
| 12 14 | 
             
                :base_path => File.join(Dir.tmpdir, 'svn-fixture')
         | 
| 13 15 | 
             
              }
         | 
| @@ -65,7 +67,7 @@ if defined?(Merb::Plugins) | |
| 65 67 | 
             
              Merb::Plugins.config[:svn_fixture] = SvnFixture.config
         | 
| 66 68 | 
             
            end
         | 
| 67 69 |  | 
| 68 | 
            -
             | 
| 69 | 
            -
             | 
| 70 | 
            -
             | 
| 71 | 
            -
             | 
| 70 | 
            +
            require 'svn-fixture/repository'
         | 
| 71 | 
            +
            require 'svn-fixture/revision'
         | 
| 72 | 
            +
            require 'svn-fixture/directory'
         | 
| 73 | 
            +
            require 'svn-fixture/file'
         | 
    
        data/spec/spec_helper.rb
    CHANGED
    
    
    
        data/spec/svn-fixture_spec.rb
    CHANGED
    
    
    
        data/svn-fixture.gemspec
    CHANGED
    
    | @@ -1,12 +1,15 @@ | |
| 1 | 
            +
            # Generated by jeweler
         | 
| 2 | 
            +
            # DO NOT EDIT THIS FILE
         | 
| 3 | 
            +
            # Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
         | 
| 1 4 | 
             
            # -*- encoding: utf-8 -*-
         | 
| 2 5 |  | 
| 3 6 | 
             
            Gem::Specification.new do |s|
         | 
| 4 7 | 
             
              s.name = %q{svn-fixture}
         | 
| 5 | 
            -
              s.version = "0.1. | 
| 8 | 
            +
              s.version = "0.1.2"
         | 
| 6 9 |  | 
| 7 10 | 
             
              s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
         | 
| 8 11 | 
             
              s.authors = ["Jared Morgan"]
         | 
| 9 | 
            -
              s.date = %q{2009- | 
| 12 | 
            +
              s.date = %q{2009-09-18}
         | 
| 10 13 | 
             
              s.email = %q{jmorgan@morgancreative.net}
         | 
| 11 14 | 
             
              s.extra_rdoc_files = [
         | 
| 12 15 | 
             
                "LICENSE",
         | 
| @@ -35,10 +38,11 @@ Gem::Specification.new do |s| | |
| 35 38 | 
             
                 "spec/svn-fixture_spec.rb",
         | 
| 36 39 | 
             
                 "svn-fixture.gemspec"
         | 
| 37 40 | 
             
              ]
         | 
| 41 | 
            +
              s.has_rdoc = true
         | 
| 38 42 | 
             
              s.homepage = %q{http://github.com/jm81/svn-fixture}
         | 
| 39 43 | 
             
              s.rdoc_options = ["--charset=UTF-8"]
         | 
| 40 44 | 
             
              s.require_paths = ["lib"]
         | 
| 41 | 
            -
              s.rubygems_version = %q{1.3. | 
| 45 | 
            +
              s.rubygems_version = %q{1.3.1}
         | 
| 42 46 | 
             
              s.summary = %q{TODO}
         | 
| 43 47 | 
             
              s.test_files = [
         | 
| 44 48 | 
             
                "spec/spec_helper.rb",
         | 
| @@ -54,7 +58,7 @@ Gem::Specification.new do |s| | |
| 54 58 |  | 
| 55 59 | 
             
              if s.respond_to? :specification_version then
         | 
| 56 60 | 
             
                current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
         | 
| 57 | 
            -
                s.specification_version =  | 
| 61 | 
            +
                s.specification_version = 2
         | 
| 58 62 |  | 
| 59 63 | 
             
                if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
         | 
| 60 64 | 
             
                else
         | 
    
        metadata
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification 
         | 
| 2 2 | 
             
            name: jm81-svn-fixture
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version 
         | 
| 4 | 
            -
              version: 0.1. | 
| 4 | 
            +
              version: 0.1.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- | 
| 12 | 
            +
            date: 2009-09-18 00:00:00 -07:00
         | 
| 13 13 | 
             
            default_executable: 
         | 
| 14 14 | 
             
            dependencies: []
         | 
| 15 15 |  | 
| @@ -44,8 +44,9 @@ files: | |
| 44 44 | 
             
            - spec/svn-fixture/revision_spec.rb
         | 
| 45 45 | 
             
            - spec/svn-fixture_spec.rb
         | 
| 46 46 | 
             
            - svn-fixture.gemspec
         | 
| 47 | 
            -
            has_rdoc:  | 
| 47 | 
            +
            has_rdoc: true
         | 
| 48 48 | 
             
            homepage: http://github.com/jm81/svn-fixture
         | 
| 49 | 
            +
            licenses: 
         | 
| 49 50 | 
             
            post_install_message: 
         | 
| 50 51 | 
             
            rdoc_options: 
         | 
| 51 52 | 
             
            - --charset=UTF-8
         | 
| @@ -66,9 +67,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement | |
| 66 67 | 
             
            requirements: []
         | 
| 67 68 |  | 
| 68 69 | 
             
            rubyforge_project: 
         | 
| 69 | 
            -
            rubygems_version: 1. | 
| 70 | 
            +
            rubygems_version: 1.3.5
         | 
| 70 71 | 
             
            signing_key: 
         | 
| 71 | 
            -
            specification_version:  | 
| 72 | 
            +
            specification_version: 2
         | 
| 72 73 | 
             
            summary: TODO
         | 
| 73 74 | 
             
            test_files: 
         | 
| 74 75 | 
             
            - spec/spec_helper.rb
         |