Skip to content

Commit

Permalink
Code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Hallison Batista committed Jul 11, 2011
1 parent 5c2cae0 commit a67c8df
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -38,6 +38,6 @@ end

desc "Uninstall gem #{spec.name} v#{spec.version}"
task :uninstall do
puts "gem uninstall -l #{spec.name} -v #{spec.version}"
sh "gem uninstall -l #{spec.name} -v #{spec.version}"
end

6 changes: 3 additions & 3 deletions git-webby.gemspec
Expand Up @@ -12,14 +12,14 @@ Gem::Specification.new do |spec|
spec.date = Git::Webby::RELEASE
spec.test_files = spec.files.select{ |path| path =~ /^test\/.*/ }
spec.require_paths = ["lib"]
spec.files = %x[git ls-files].split.reject do |out|
out =~ %r{^\.} || out =~ %r{/^doc/api/}
end
spec.description = <<-end.gsub /^ /,''
Git::Webby is a implementation of the several features:
- Smart HTTP which works like as git-http-backend.
- Show info pages about the projects.
end
spec.files = %x[git ls-files].split.reject do |out|
out =~ %r{^\.} || out =~ %r{/^doc/api/}
end
spec.post_install_message = <<-end.gsub(/^[ ]{4}/,'')
#{'-'*78}
Git::Webby v#{spec.version}
Expand Down

0 comments on commit a67c8df

Please sign in to comment.