Skip to content
This repository has been archived by the owner on Mar 12, 2023. It is now read-only.

Commit

Permalink
Revert "Collect release files with git gem."
Browse files Browse the repository at this point in the history
This reverts commit 30c90d2.

requiring gem from gemspec does not work...
  • Loading branch information
Hiroshi Nakamura committed Dec 14, 2011
1 parent 5f4a343 commit 0a8cf14
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions httpclient.gemspec
@@ -1,7 +1,4 @@
require 'rubygems'
require 'git'
git = Git.open(File.dirname(__FILE__))
files = git.ls_files.keys
Gem::Specification.new { |s|
s.name = "httpclient"
s.version = "2.2.4"
Expand All @@ -11,8 +8,6 @@ Gem::Specification.new { |s|
s.homepage = "http://github.com/nahi/httpclient"
s.platform = Gem::Platform::RUBY
s.summary = "gives something like the functionality of libwww-perl (LWP) in Ruby"
s.files = files
s.test_files = files.grep(/^test\/test_.*\.rb$/)
s.files = Dir.glob('{lib,sample,test}/**/*') + ['README.txt']
s.require_path = "lib"
s.add_development_dependency "git"
}

0 comments on commit 0a8cf14

Please sign in to comment.