francois-piston 2.0.2 → 2.0.3
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 +9 -0
- data/History.txt +4 -0
- data/Rakefile +25 -0
- data/TODO +6 -0
- data/VERSION.yml +2 -2
- data/features/import_to_git.feature +56 -0
- data/features/import_to_svn.feature +54 -0
- data/features/step_definitions/repository.rb +213 -0
- data/features/support/env.rb +27 -0
- data/features/support/svn.rb +23 -0
- data/features/update_to_git.feature +137 -0
- data/features/update_to_svn.feature +137 -0
- data/lib/piston/commands/lock.rb +14 -0
- data/lib/piston/commands/lock_unlock.rb +0 -5
- data/lib/piston/commands/unlock.rb +14 -0
- data/lib/piston/git/commit.rb +1 -0
- data/lib/piston/svn/revision.rb +1 -0
- data/log/.gitignore +0 -0
- data/piston.gemspec +184 -0
- data/script/destroy +14 -0
- data/script/generate +14 -0
- data/script/txt2html +74 -0
- data/setup.rb +1585 -0
- data/tasks/environment.rake +7 -0
- data/tasks/features.rake +6 -0
- data/tasks/manifest.rake +4 -0
- data/tasks/test.rake +62 -0
- data/tasks/website.rake +20 -0
- data/tmp/.gitignore +1 -0
- metadata +72 -25
data/tasks/features.rake
ADDED
data/tasks/manifest.rake
ADDED
data/tasks/test.rake
ADDED
@@ -0,0 +1,62 @@
|
|
1
|
+
require "rake/testtask"
|
2
|
+
|
3
|
+
Rake.application.instance_variable_get("@tasks").delete("test")
|
4
|
+
Rake::TestTask.new("test") do |t|
|
5
|
+
t.libs << "test"
|
6
|
+
t.test_files = FileList['test/**/test_*.rb']
|
7
|
+
t.verbose = true
|
8
|
+
t.warning = false
|
9
|
+
end
|
10
|
+
|
11
|
+
namespace :test do
|
12
|
+
Rake::TestTask.new("units") do |t|
|
13
|
+
t.libs << "test"
|
14
|
+
t.test_files = FileList['test/unit/**/test_*.rb']
|
15
|
+
t.verbose = true
|
16
|
+
t.warning = false
|
17
|
+
end
|
18
|
+
|
19
|
+
Rake::TestTask.new("recent") do |t|
|
20
|
+
t.libs << "test"
|
21
|
+
t.verbose = true
|
22
|
+
t.warning = false
|
23
|
+
|
24
|
+
# 10 minutes ago
|
25
|
+
cutoff_at = Time.now - 10 * 60
|
26
|
+
|
27
|
+
t.test_files = FileList["test/unit/**/test_*.rb"].select do |path|
|
28
|
+
File.mtime(path) > cutoff_at
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
desc "Prepares an SVN and Git repository for manual testing"
|
33
|
+
task :prep do
|
34
|
+
require "pathname"
|
35
|
+
PISTON_ROOT = Pathname.new(File.expand_path(Dir.pwd))
|
36
|
+
MANUAL_ROOT = PISTON_ROOT + "tmp/manual"
|
37
|
+
rm_rf MANUAL_ROOT; mkdir MANUAL_ROOT
|
38
|
+
REPOS_ROOT = MANUAL_ROOT + "repos"
|
39
|
+
REPOS_URL = "file://#{REPOS_ROOT}"
|
40
|
+
WC_ROOT = MANUAL_ROOT + "wc"
|
41
|
+
|
42
|
+
sh "svnadmin create #{REPOS_ROOT}"
|
43
|
+
sh "svn checkout #{REPOS_URL} #{WC_ROOT}"
|
44
|
+
Dir.chdir(WC_ROOT) do
|
45
|
+
sh "svn mkdir project plugins plugins/libcalc plugins/libpower"
|
46
|
+
Dir.chdir("plugins/libcalc") do
|
47
|
+
File.open("README", "w") {|io| io.puts "libcalc\n-------\n\nThis is libcalc\n"}
|
48
|
+
File.open("libcalc.rb", "w") {|io| io.puts "# libcaclc.rb\n# Ensure this is powerful enough\n"}
|
49
|
+
end
|
50
|
+
Dir.chdir("plugins/libpower") do
|
51
|
+
File.open("README", "w") {|io| io.puts "libpower\n-------\n\nThis is libpower\n"}
|
52
|
+
end
|
53
|
+
sh "svn add plugins/libcalc/README plugins/libcalc/libcalc.rb plugins/libpower/README"
|
54
|
+
sh "svn commit -m 'Initial revision'"
|
55
|
+
sh "ruby -I#{PISTON_ROOT}/lib #{PISTON_ROOT}/bin/piston import #{REPOS_URL}"
|
56
|
+
Dir.chdir("plugins/libcalc") do
|
57
|
+
File.open("libcalc.rb", "w") {|io| io.puts "# libcalc.rb\n# Ensure this is powerful enough\n\nclass Libcalc\nend\n"}
|
58
|
+
end
|
59
|
+
sh "svn commit -m 'Implement libcalc'"
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
data/tasks/website.rake
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
namespace :website do
|
2
|
+
desc "Publishes the gh-pages branch to RubyForge"
|
3
|
+
task :publish do
|
4
|
+
repos = Dir.pwd
|
5
|
+
sh "rm -rf $TMPDIR/piston"
|
6
|
+
sh "mkdir $TMPDIR/piston"
|
7
|
+
begin
|
8
|
+
Dir.chdir(ENV["TMPDIR"] + "/piston") do
|
9
|
+
sh "git clone #{repos}"
|
10
|
+
Dir.chdir("piston") do
|
11
|
+
sh "git checkout origin/gh-pages"
|
12
|
+
sh "jekyll"
|
13
|
+
sh "rsync -avz --delete --exclude='*.psd' _site/ rubyforge.org:/var/www/gforge-projects/piston"
|
14
|
+
end
|
15
|
+
end
|
16
|
+
ensure
|
17
|
+
sh "rm -rf $TMPDIR/piston"
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
data/tmp/.gitignore
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
*
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: francois-piston
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Francois Beausoleil
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-07-17 00:00:00 -07:00
|
13
13
|
default_executable: piston
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -61,76 +61,86 @@ extensions: []
|
|
61
61
|
extra_rdoc_files:
|
62
62
|
- README.txt
|
63
63
|
files:
|
64
|
+
- .gitignore
|
64
65
|
- History.txt
|
65
66
|
- License.txt
|
66
67
|
- Manifest.txt
|
67
68
|
- README.txt
|
69
|
+
- Rakefile
|
70
|
+
- TODO
|
68
71
|
- VERSION.yml
|
69
72
|
- bin/piston
|
70
|
-
-
|
73
|
+
- features/import_to_git.feature
|
74
|
+
- features/import_to_svn.feature
|
75
|
+
- features/step_definitions/repository.rb
|
76
|
+
- features/support/env.rb
|
77
|
+
- features/support/svn.rb
|
78
|
+
- features/update_to_git.feature
|
79
|
+
- features/update_to_svn.feature
|
80
|
+
- lib/piston.rb
|
71
81
|
- lib/piston/cli.rb
|
72
|
-
- lib/piston/commands
|
82
|
+
- lib/piston/commands.rb
|
73
83
|
- lib/piston/commands/base.rb
|
74
84
|
- lib/piston/commands/convert.rb
|
75
85
|
- lib/piston/commands/diff.rb
|
76
86
|
- lib/piston/commands/import.rb
|
77
87
|
- lib/piston/commands/info.rb
|
88
|
+
- lib/piston/commands/lock.rb
|
78
89
|
- lib/piston/commands/lock_unlock.rb
|
79
90
|
- lib/piston/commands/status.rb
|
91
|
+
- lib/piston/commands/unlock.rb
|
80
92
|
- lib/piston/commands/update.rb
|
81
93
|
- lib/piston/commands/upgrade.rb
|
82
|
-
- lib/piston/
|
83
|
-
- lib/piston/git
|
94
|
+
- lib/piston/git.rb
|
84
95
|
- lib/piston/git/client.rb
|
85
96
|
- lib/piston/git/commit.rb
|
86
97
|
- lib/piston/git/repository.rb
|
87
98
|
- lib/piston/git/working_copy.rb
|
88
|
-
- lib/piston/git.rb
|
89
99
|
- lib/piston/repository.rb
|
90
100
|
- lib/piston/revision.rb
|
91
|
-
- lib/piston/svn
|
101
|
+
- lib/piston/svn.rb
|
92
102
|
- lib/piston/svn/client.rb
|
93
103
|
- lib/piston/svn/repository.rb
|
94
104
|
- lib/piston/svn/revision.rb
|
95
105
|
- lib/piston/svn/working_copy.rb
|
96
|
-
- lib/piston/svn.rb
|
97
106
|
- lib/piston/version.rb
|
98
107
|
- lib/piston/working_copy.rb
|
99
|
-
- lib/piston.rb
|
100
108
|
- lib/subclass_responsibility_error.rb
|
109
|
+
- log/.gitignore
|
110
|
+
- piston.gemspec
|
111
|
+
- script/destroy
|
112
|
+
- script/generate
|
113
|
+
- script/txt2html
|
114
|
+
- setup.rb
|
115
|
+
- tasks/environment.rake
|
116
|
+
- tasks/features.rake
|
117
|
+
- tasks/manifest.rake
|
118
|
+
- tasks/test.rake
|
119
|
+
- tasks/website.rake
|
101
120
|
- test/integration_helpers.rb
|
102
121
|
- test/spec_suite.rb
|
103
122
|
- test/test_helper.rb
|
104
|
-
- test/unit
|
105
|
-
- test/unit/git
|
106
|
-
- test/unit/git/commit
|
107
123
|
- test/unit/git/commit/test_checkout.rb
|
108
124
|
- test/unit/git/commit/test_each.rb
|
109
125
|
- test/unit/git/commit/test_rememberance.rb
|
110
126
|
- test/unit/git/commit/test_validation.rb
|
111
|
-
- test/unit/git/repository
|
112
127
|
- test/unit/git/repository/test_at.rb
|
113
128
|
- test/unit/git/repository/test_basename.rb
|
114
129
|
- test/unit/git/repository/test_branchanme.rb
|
115
130
|
- test/unit/git/repository/test_guessing.rb
|
116
|
-
- test/unit/git/working_copy
|
117
131
|
- test/unit/git/working_copy/test_copying.rb
|
118
132
|
- test/unit/git/working_copy/test_creation.rb
|
119
133
|
- test/unit/git/working_copy/test_existence.rb
|
120
134
|
- test/unit/git/working_copy/test_finalization.rb
|
121
135
|
- test/unit/git/working_copy/test_guessing.rb
|
122
136
|
- test/unit/git/working_copy/test_rememberance.rb
|
123
|
-
- test/unit/svn
|
124
|
-
- test/unit/svn/repository
|
125
137
|
- test/unit/svn/repository/test_at.rb
|
126
138
|
- test/unit/svn/repository/test_basename.rb
|
127
139
|
- test/unit/svn/repository/test_guessing.rb
|
128
|
-
- test/unit/svn/revision
|
129
140
|
- test/unit/svn/revision/test_checkout.rb
|
130
141
|
- test/unit/svn/revision/test_each.rb
|
131
142
|
- test/unit/svn/revision/test_rememberance.rb
|
132
143
|
- test/unit/svn/revision/test_validation.rb
|
133
|
-
- test/unit/svn/working_copy
|
134
144
|
- test/unit/svn/working_copy/test_copying.rb
|
135
145
|
- test/unit/svn/working_copy/test_creation.rb
|
136
146
|
- test/unit/svn/working_copy/test_existence.rb
|
@@ -142,16 +152,15 @@ files:
|
|
142
152
|
- test/unit/test_lock_unlock.rb
|
143
153
|
- test/unit/test_repository.rb
|
144
154
|
- test/unit/test_revision.rb
|
145
|
-
- test/unit/working_copy
|
146
155
|
- test/unit/working_copy/test_guessing.rb
|
147
156
|
- test/unit/working_copy/test_info.rb
|
148
157
|
- test/unit/working_copy/test_rememberance.rb
|
149
158
|
- test/unit/working_copy/test_validate.rb
|
150
|
-
|
159
|
+
- tmp/.gitignore
|
160
|
+
has_rdoc: false
|
151
161
|
homepage: http://francois.github.com/piston
|
152
162
|
post_install_message:
|
153
163
|
rdoc_options:
|
154
|
-
- --inline-source
|
155
164
|
- --charset=UTF-8
|
156
165
|
require_paths:
|
157
166
|
- lib
|
@@ -172,7 +181,45 @@ requirements: []
|
|
172
181
|
rubyforge_project: piston
|
173
182
|
rubygems_version: 1.2.0
|
174
183
|
signing_key:
|
175
|
-
specification_version:
|
184
|
+
specification_version: 3
|
176
185
|
summary: Ease your vendor branch management worries
|
177
|
-
test_files:
|
178
|
-
|
186
|
+
test_files:
|
187
|
+
- test/integration_helpers.rb
|
188
|
+
- test/spec_suite.rb
|
189
|
+
- test/test_helper.rb
|
190
|
+
- test/unit/git/commit/test_checkout.rb
|
191
|
+
- test/unit/git/commit/test_each.rb
|
192
|
+
- test/unit/git/commit/test_rememberance.rb
|
193
|
+
- test/unit/git/commit/test_validation.rb
|
194
|
+
- test/unit/git/repository/test_at.rb
|
195
|
+
- test/unit/git/repository/test_basename.rb
|
196
|
+
- test/unit/git/repository/test_branchanme.rb
|
197
|
+
- test/unit/git/repository/test_guessing.rb
|
198
|
+
- test/unit/git/working_copy/test_copying.rb
|
199
|
+
- test/unit/git/working_copy/test_creation.rb
|
200
|
+
- test/unit/git/working_copy/test_existence.rb
|
201
|
+
- test/unit/git/working_copy/test_finalization.rb
|
202
|
+
- test/unit/git/working_copy/test_guessing.rb
|
203
|
+
- test/unit/git/working_copy/test_rememberance.rb
|
204
|
+
- test/unit/svn/repository/test_at.rb
|
205
|
+
- test/unit/svn/repository/test_basename.rb
|
206
|
+
- test/unit/svn/repository/test_guessing.rb
|
207
|
+
- test/unit/svn/revision/test_checkout.rb
|
208
|
+
- test/unit/svn/revision/test_each.rb
|
209
|
+
- test/unit/svn/revision/test_rememberance.rb
|
210
|
+
- test/unit/svn/revision/test_validation.rb
|
211
|
+
- test/unit/svn/working_copy/test_copying.rb
|
212
|
+
- test/unit/svn/working_copy/test_creation.rb
|
213
|
+
- test/unit/svn/working_copy/test_existence.rb
|
214
|
+
- test/unit/svn/working_copy/test_externals.rb
|
215
|
+
- test/unit/svn/working_copy/test_finalization.rb
|
216
|
+
- test/unit/svn/working_copy/test_guessing.rb
|
217
|
+
- test/unit/svn/working_copy/test_rememberance.rb
|
218
|
+
- test/unit/test_info.rb
|
219
|
+
- test/unit/test_lock_unlock.rb
|
220
|
+
- test/unit/test_repository.rb
|
221
|
+
- test/unit/test_revision.rb
|
222
|
+
- test/unit/working_copy/test_guessing.rb
|
223
|
+
- test/unit/working_copy/test_info.rb
|
224
|
+
- test/unit/working_copy/test_rememberance.rb
|
225
|
+
- test/unit/working_copy/test_validate.rb
|