svn-fixture 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/.document +5 -0
- data/.gitignore +10 -0
- data/LICENSE +20 -0
- data/README.md +77 -0
- data/Rakefile +54 -0
- data/VERSION +1 -0
- data/lib/svn-fixture.rb +73 -0
- data/lib/svn-fixture/directory.rb +99 -0
- data/lib/svn-fixture/file.rb +58 -0
- data/lib/svn-fixture/repository.rb +172 -0
- data/lib/svn-fixture/revision.rb +65 -0
- data/spec/spec_helper.rb +6 -0
- data/spec/svn-fixture/config_spec.rb +29 -0
- data/spec/svn-fixture/directory_spec.rb +194 -0
- data/spec/svn-fixture/file_spec.rb +65 -0
- data/spec/svn-fixture/fixtures/hello_world.rb +43 -0
- data/spec/svn-fixture/integration_spec.rb +102 -0
- data/spec/svn-fixture/repository_spec.rb +344 -0
- data/spec/svn-fixture/revision_spec.rb +70 -0
- data/spec/svn-fixture_spec.rb +89 -0
- data/svn-fixture.gemspec +72 -0
- metadata +89 -0
data/svn-fixture.gemspec
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{svn-fixture}
|
|
8
|
+
s.version = "0.1.2"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Jared Morgan"]
|
|
12
|
+
s.date = %q{2009-10-03}
|
|
13
|
+
s.description = %q{svn-fixture simplifies creating (or updating) a Subversion repository. It is
|
|
14
|
+
designed to be used in tests that require a Subversion repo, but can also be
|
|
15
|
+
used to initialize a repository according to some template. svn-fixture depends
|
|
16
|
+
on the Subversion Ruby bindings.
|
|
17
|
+
}
|
|
18
|
+
s.email = %q{jmorgan@morgancreative.net}
|
|
19
|
+
s.extra_rdoc_files = [
|
|
20
|
+
"LICENSE",
|
|
21
|
+
"README.md"
|
|
22
|
+
]
|
|
23
|
+
s.files = [
|
|
24
|
+
".document",
|
|
25
|
+
".gitignore",
|
|
26
|
+
"LICENSE",
|
|
27
|
+
"README.md",
|
|
28
|
+
"Rakefile",
|
|
29
|
+
"VERSION",
|
|
30
|
+
"lib/svn-fixture.rb",
|
|
31
|
+
"lib/svn-fixture/directory.rb",
|
|
32
|
+
"lib/svn-fixture/file.rb",
|
|
33
|
+
"lib/svn-fixture/repository.rb",
|
|
34
|
+
"lib/svn-fixture/revision.rb",
|
|
35
|
+
"spec/spec_helper.rb",
|
|
36
|
+
"spec/svn-fixture/config_spec.rb",
|
|
37
|
+
"spec/svn-fixture/directory_spec.rb",
|
|
38
|
+
"spec/svn-fixture/file_spec.rb",
|
|
39
|
+
"spec/svn-fixture/fixtures/hello_world.rb",
|
|
40
|
+
"spec/svn-fixture/integration_spec.rb",
|
|
41
|
+
"spec/svn-fixture/repository_spec.rb",
|
|
42
|
+
"spec/svn-fixture/revision_spec.rb",
|
|
43
|
+
"spec/svn-fixture_spec.rb",
|
|
44
|
+
"svn-fixture.gemspec"
|
|
45
|
+
]
|
|
46
|
+
s.homepage = %q{http://github.com/jm81/svn-fixture}
|
|
47
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
48
|
+
s.require_paths = ["lib"]
|
|
49
|
+
s.rubygems_version = %q{1.3.5}
|
|
50
|
+
s.summary = %q{Ruby library to create Subversion repositories useful for tests}
|
|
51
|
+
s.test_files = [
|
|
52
|
+
"spec/spec_helper.rb",
|
|
53
|
+
"spec/svn-fixture/config_spec.rb",
|
|
54
|
+
"spec/svn-fixture/directory_spec.rb",
|
|
55
|
+
"spec/svn-fixture/file_spec.rb",
|
|
56
|
+
"spec/svn-fixture/fixtures/hello_world.rb",
|
|
57
|
+
"spec/svn-fixture/integration_spec.rb",
|
|
58
|
+
"spec/svn-fixture/repository_spec.rb",
|
|
59
|
+
"spec/svn-fixture/revision_spec.rb",
|
|
60
|
+
"spec/svn-fixture_spec.rb"
|
|
61
|
+
]
|
|
62
|
+
|
|
63
|
+
if s.respond_to? :specification_version then
|
|
64
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
65
|
+
s.specification_version = 3
|
|
66
|
+
|
|
67
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
68
|
+
else
|
|
69
|
+
end
|
|
70
|
+
else
|
|
71
|
+
end
|
|
72
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: svn-fixture
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.2
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Jared Morgan
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
|
|
12
|
+
date: 2009-10-03 00:00:00 -05:00
|
|
13
|
+
default_executable:
|
|
14
|
+
dependencies: []
|
|
15
|
+
|
|
16
|
+
description: |
|
|
17
|
+
svn-fixture simplifies creating (or updating) a Subversion repository. It is
|
|
18
|
+
designed to be used in tests that require a Subversion repo, but can also be
|
|
19
|
+
used to initialize a repository according to some template. svn-fixture depends
|
|
20
|
+
on the Subversion Ruby bindings.
|
|
21
|
+
|
|
22
|
+
email: jmorgan@morgancreative.net
|
|
23
|
+
executables: []
|
|
24
|
+
|
|
25
|
+
extensions: []
|
|
26
|
+
|
|
27
|
+
extra_rdoc_files:
|
|
28
|
+
- LICENSE
|
|
29
|
+
- README.md
|
|
30
|
+
files:
|
|
31
|
+
- .document
|
|
32
|
+
- .gitignore
|
|
33
|
+
- LICENSE
|
|
34
|
+
- README.md
|
|
35
|
+
- Rakefile
|
|
36
|
+
- VERSION
|
|
37
|
+
- lib/svn-fixture.rb
|
|
38
|
+
- lib/svn-fixture/directory.rb
|
|
39
|
+
- lib/svn-fixture/file.rb
|
|
40
|
+
- lib/svn-fixture/repository.rb
|
|
41
|
+
- lib/svn-fixture/revision.rb
|
|
42
|
+
- spec/spec_helper.rb
|
|
43
|
+
- spec/svn-fixture/config_spec.rb
|
|
44
|
+
- spec/svn-fixture/directory_spec.rb
|
|
45
|
+
- spec/svn-fixture/file_spec.rb
|
|
46
|
+
- spec/svn-fixture/fixtures/hello_world.rb
|
|
47
|
+
- spec/svn-fixture/integration_spec.rb
|
|
48
|
+
- spec/svn-fixture/repository_spec.rb
|
|
49
|
+
- spec/svn-fixture/revision_spec.rb
|
|
50
|
+
- spec/svn-fixture_spec.rb
|
|
51
|
+
- svn-fixture.gemspec
|
|
52
|
+
has_rdoc: true
|
|
53
|
+
homepage: http://github.com/jm81/svn-fixture
|
|
54
|
+
licenses: []
|
|
55
|
+
|
|
56
|
+
post_install_message:
|
|
57
|
+
rdoc_options:
|
|
58
|
+
- --charset=UTF-8
|
|
59
|
+
require_paths:
|
|
60
|
+
- lib
|
|
61
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
62
|
+
requirements:
|
|
63
|
+
- - ">="
|
|
64
|
+
- !ruby/object:Gem::Version
|
|
65
|
+
version: "0"
|
|
66
|
+
version:
|
|
67
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
68
|
+
requirements:
|
|
69
|
+
- - ">="
|
|
70
|
+
- !ruby/object:Gem::Version
|
|
71
|
+
version: "0"
|
|
72
|
+
version:
|
|
73
|
+
requirements: []
|
|
74
|
+
|
|
75
|
+
rubyforge_project:
|
|
76
|
+
rubygems_version: 1.3.5
|
|
77
|
+
signing_key:
|
|
78
|
+
specification_version: 3
|
|
79
|
+
summary: Ruby library to create Subversion repositories useful for tests
|
|
80
|
+
test_files:
|
|
81
|
+
- spec/spec_helper.rb
|
|
82
|
+
- spec/svn-fixture/config_spec.rb
|
|
83
|
+
- spec/svn-fixture/directory_spec.rb
|
|
84
|
+
- spec/svn-fixture/file_spec.rb
|
|
85
|
+
- spec/svn-fixture/fixtures/hello_world.rb
|
|
86
|
+
- spec/svn-fixture/integration_spec.rb
|
|
87
|
+
- spec/svn-fixture/repository_spec.rb
|
|
88
|
+
- spec/svn-fixture/revision_spec.rb
|
|
89
|
+
- spec/svn-fixture_spec.rb
|