public
Description: Piston is a utility that eases vendor branch management. This repository is a complete reimplementation of Piston to provide different backends, depending on the repositories and working copies you pistonize from.
Homepage: http://piston.rubyforge.org/
Clone URL: git://github.com/francois/piston.git
piston / piston.gemspec
100644 186 lines (181 sloc) 7.312 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
# Generated by jeweler
# DO NOT EDIT THIS FILE
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
# -*- encoding: utf-8 -*-
 
Gem::Specification.new do |s|
  s.name = %q{piston}
  s.version = "2.0.7"
 
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Francois Beausoleil"]
  s.date = %q{2009-10-22}
  s.default_executable = %q{piston}
  s.description = %q{Piston makes it easy to merge vendor branches into your own repository, without worrying about which revisions were grabbed or not. Piston will also keep your local changes in addition to the remote changes.}
  s.email = %q{francois@teksol.info}
  s.executables = ["piston"]
  s.extra_rdoc_files = [
    "README.txt"
  ]
  s.files = [
    ".gitignore",
     "History.txt",
     "License.txt",
     "README.txt",
     "Rakefile",
     "TODO",
     "VERSION.yml",
     "bin/piston",
     "features/import_to_git.feature",
     "features/import_to_svn.feature",
     "features/step_definitions/repository.rb",
     "features/support/env.rb",
     "features/support/svn.rb",
     "features/update_to_git.feature",
     "features/update_to_svn.feature",
     "lib/piston.rb",
     "lib/piston/cli.rb",
     "lib/piston/commands.rb",
     "lib/piston/commands/base.rb",
     "lib/piston/commands/convert.rb",
     "lib/piston/commands/diff.rb",
     "lib/piston/commands/import.rb",
     "lib/piston/commands/info.rb",
     "lib/piston/commands/lock.rb",
     "lib/piston/commands/lock_unlock.rb",
     "lib/piston/commands/status.rb",
     "lib/piston/commands/unlock.rb",
     "lib/piston/commands/update.rb",
     "lib/piston/commands/upgrade.rb",
     "lib/piston/git.rb",
     "lib/piston/git/client.rb",
     "lib/piston/git/commit.rb",
     "lib/piston/git/repository.rb",
     "lib/piston/git/working_copy.rb",
     "lib/piston/repository.rb",
     "lib/piston/revision.rb",
     "lib/piston/svn.rb",
     "lib/piston/svn/client.rb",
     "lib/piston/svn/repository.rb",
     "lib/piston/svn/revision.rb",
     "lib/piston/svn/working_copy.rb",
     "lib/piston/version.rb",
     "lib/piston/working_copy.rb",
     "lib/subclass_responsibility_error.rb",
     "log/.gitignore",
     "piston.gemspec",
     "script/destroy",
     "script/generate",
     "script/txt2html",
     "setup.rb",
     "tasks/environment.rake",
     "tasks/test.rake",
     "tasks/website.rake",
     "test/integration_helpers.rb",
     "test/spec_suite.rb",
     "test/test_helper.rb",
     "test/unit/git/commit/test_checkout.rb",
     "test/unit/git/commit/test_each.rb",
     "test/unit/git/commit/test_rememberance.rb",
     "test/unit/git/commit/test_validation.rb",
     "test/unit/git/repository/test_at.rb",
     "test/unit/git/repository/test_basename.rb",
     "test/unit/git/repository/test_branchanme.rb",
     "test/unit/git/repository/test_guessing.rb",
     "test/unit/git/working_copy/test_copying.rb",
     "test/unit/git/working_copy/test_creation.rb",
     "test/unit/git/working_copy/test_existence.rb",
     "test/unit/git/working_copy/test_finalization.rb",
     "test/unit/git/working_copy/test_guessing.rb",
     "test/unit/git/working_copy/test_rememberance.rb",
     "test/unit/svn/repository/test_at.rb",
     "test/unit/svn/repository/test_basename.rb",
     "test/unit/svn/repository/test_guessing.rb",
     "test/unit/svn/revision/test_checkout.rb",
     "test/unit/svn/revision/test_each.rb",
     "test/unit/svn/revision/test_rememberance.rb",
     "test/unit/svn/revision/test_validation.rb",
     "test/unit/svn/working_copy/test_copying.rb",
     "test/unit/svn/working_copy/test_creation.rb",
     "test/unit/svn/working_copy/test_existence.rb",
     "test/unit/svn/working_copy/test_externals.rb",
     "test/unit/svn/working_copy/test_finalization.rb",
     "test/unit/svn/working_copy/test_guessing.rb",
     "test/unit/svn/working_copy/test_rememberance.rb",
     "test/unit/test_info.rb",
     "test/unit/test_lock_unlock.rb",
     "test/unit/test_repository.rb",
     "test/unit/test_revision.rb",
     "test/unit/working_copy/test_guessing.rb",
     "test/unit/working_copy/test_info.rb",
     "test/unit/working_copy/test_rememberance.rb",
     "test/unit/working_copy/test_validate.rb",
     "tmp/.gitignore"
  ]
  s.has_rdoc = false
  s.homepage = %q{http://francois.github.com/piston}
  s.rdoc_options = ["--charset=UTF-8"]
  s.require_paths = ["lib"]
  s.rubyforge_project = %q{piston}
  s.rubygems_version = %q{1.3.5}
  s.summary = %q{Ease your vendor branch management worries}
  s.test_files = [
    "test/integration_helpers.rb",
     "test/spec_suite.rb",
     "test/test_helper.rb",
     "test/unit/git/commit/test_checkout.rb",
     "test/unit/git/commit/test_each.rb",
     "test/unit/git/commit/test_rememberance.rb",
     "test/unit/git/commit/test_validation.rb",
     "test/unit/git/repository/test_at.rb",
     "test/unit/git/repository/test_basename.rb",
     "test/unit/git/repository/test_branchanme.rb",
     "test/unit/git/repository/test_guessing.rb",
     "test/unit/git/working_copy/test_copying.rb",
     "test/unit/git/working_copy/test_creation.rb",
     "test/unit/git/working_copy/test_existence.rb",
     "test/unit/git/working_copy/test_finalization.rb",
     "test/unit/git/working_copy/test_guessing.rb",
     "test/unit/git/working_copy/test_rememberance.rb",
     "test/unit/svn/repository/test_at.rb",
     "test/unit/svn/repository/test_basename.rb",
     "test/unit/svn/repository/test_guessing.rb",
     "test/unit/svn/revision/test_checkout.rb",
     "test/unit/svn/revision/test_each.rb",
     "test/unit/svn/revision/test_rememberance.rb",
     "test/unit/svn/revision/test_validation.rb",
     "test/unit/svn/working_copy/test_copying.rb",
     "test/unit/svn/working_copy/test_creation.rb",
     "test/unit/svn/working_copy/test_existence.rb",
     "test/unit/svn/working_copy/test_externals.rb",
     "test/unit/svn/working_copy/test_finalization.rb",
     "test/unit/svn/working_copy/test_guessing.rb",
     "test/unit/svn/working_copy/test_rememberance.rb",
     "test/unit/test_info.rb",
     "test/unit/test_lock_unlock.rb",
     "test/unit/test_repository.rb",
     "test/unit/test_revision.rb",
     "test/unit/working_copy/test_guessing.rb",
     "test/unit/working_copy/test_info.rb",
     "test/unit/working_copy/test_rememberance.rb",
     "test/unit/working_copy/test_validate.rb"
  ]
 
  if s.respond_to? :specification_version then
    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
    s.specification_version = 3
 
    if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
      s.add_development_dependency(%q<cucumber>, [">= 0.1.16"])
      s.add_runtime_dependency(%q<main>, [">= 2.8.3"])
      s.add_runtime_dependency(%q<log4r>, [">= 1.0.5"])
      s.add_runtime_dependency(%q<activesupport>, [">= 2.0.0"])
    else
      s.add_dependency(%q<cucumber>, [">= 0.1.16"])
      s.add_dependency(%q<main>, [">= 2.8.3"])
      s.add_dependency(%q<log4r>, [">= 1.0.5"])
      s.add_dependency(%q<activesupport>, [">= 2.0.0"])
    end
  else
    s.add_dependency(%q<cucumber>, [">= 0.1.16"])
    s.add_dependency(%q<main>, [">= 2.8.3"])
    s.add_dependency(%q<log4r>, [">= 1.0.5"])
    s.add_dependency(%q<activesupport>, [">= 2.0.0"])
  end
end