This repository has been archived by the owner on Apr 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved everything up a level: only one gem will be built.
Changed requirements, dependencies. Tests are green.
- Loading branch information
Showing
133 changed files
with
95 additions
and
7,458 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
.gitignore | ||
History.txt | ||
License.txt | ||
Manifest.txt | ||
README.txt | ||
Rakefile | ||
bin/piston | ||
config/hoe.rb | ||
config/requirements.rb | ||
lib/piston.rb | ||
lib/piston/version.rb | ||
lib/piston_core.rb | ||
lib/piston_core/cli.rb | ||
lib/piston_core/commands/base.rb | ||
lib/piston_core/commands/import.rb | ||
lib/piston_core/repository.rb | ||
lib/piston_core/revision.rb | ||
lib/piston_core/version.rb | ||
lib/piston_core/working_copy.rb | ||
lib/piston_git.rb | ||
lib/piston_git/client.rb | ||
lib/piston_git/commit.rb | ||
lib/piston_git/repository.rb | ||
lib/piston_git/version.rb | ||
lib/piston_git/working_copy.rb | ||
lib/piston_svn.rb | ||
lib/piston_svn/client.rb | ||
lib/piston_svn/repository.rb | ||
lib/piston_svn/revision.rb | ||
lib/piston_svn/version.rb | ||
lib/piston_svn/working_copy.rb | ||
log/.gitignore | ||
samples/svn/import.rb | ||
script/destroy | ||
script/generate | ||
script/txt2html | ||
setup.rb | ||
tasks/deployment.rake | ||
tasks/environment.rake | ||
tasks/website.rake | ||
test/test_git_commit_checkout.rb | ||
test/test_git_commit_each.rb | ||
test/test_git_commit_rememberance.rb | ||
test/test_git_repository_at.rb | ||
test/test_git_repository_guessing.rb | ||
test/test_helper.rb | ||
test/test_import.rb | ||
test/test_piston.rb | ||
test/test_repository_guessing.rb | ||
test/test_svn_repository_at.rb | ||
test/test_svn_repository_guessing.rb | ||
test/test_svn_revision_checkout.rb | ||
test/test_svn_revision_each.rb | ||
test/test_svn_revision_rememberance.rb | ||
test/test_svn_working_copy_copying.rb | ||
test/test_svn_working_copy_creation.rb | ||
test/test_svn_working_copy_existence.rb | ||
test/test_svn_working_copy_finalization.rb | ||
test/test_svn_working_copy_guessing.rb | ||
test/test_svn_working_copy_rememberance.rb | ||
test/test_working_copy_guessing.rb | ||
tmp/.gitignore | ||
website/index.html | ||
website/index.txt | ||
website/javascripts/rounded_corners_lite.inc.js | ||
website/stylesheets/screen.css | ||
website/template.rhtml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,4 @@ | ||
LIBS = %w(piston-core piston-git piston-svn piston) | ||
|
||
def each_lib | ||
LIBS.each do |libname| | ||
Dir.chdir(libname) do | ||
yield libname | ||
end | ||
end | ||
end | ||
|
||
def each_lib_reversed | ||
LIBS.reverse.each do |libname| | ||
Dir.chdir(libname) do | ||
yield libname | ||
end | ||
end | ||
end | ||
|
||
namespace :gem do | ||
task :install do | ||
each_lib { sh "rake install_gem" } | ||
end | ||
|
||
task :uninstall do | ||
each_lib_reversed {|libname| sh "sudo gem uninstall #{libname}"} | ||
end | ||
end | ||
|
||
task :test do | ||
each_lib { sh "rake test" } | ||
end | ||
|
||
task :default => :test | ||
require "config/requirements" | ||
require "config/hoe" # setup Hoe + all gem configuration | ||
|
||
Dir["tasks/**/*.rake"].each { |rake| load rake } |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.