Rakefile in ipfs-api-0.1.0 vs Rakefile in ipfs-api-0.2.0

- old
+ new

@@ -9,11 +9,11 @@ PKG_NAME = 'ipfs-api' PKG_VERSION = IPFS::VERSION AUTHORS = ['Holger Joest'] EMAIL = 'holger@joest.org' -HOMEPAGE = 'http://ruby-ipfs-api.github.io' +HOMEPAGE = 'http://hjoest.github.io/ruby-ipfs-api' SUMMARY = 'Interplanetary File System for Ruby' DESCRIPTION = 'This is a client library to access the IPFS from Ruby' RDOC_OPTIONS = [ '--title', SUMMARY, '--quiet', '--main', 'lib/ipfs-api.rb' ] BUILD_FILES = [ 'Rakefile', 'ipfs-api.gemspec' ].sort RDOC_FILES = [ 'README.md', 'LICENSE' ].sort @@ -30,10 +30,10 @@ rd.rdoc_dir = 'rdoc' rd.rdoc_files.include(RDOC_FILES, "lib/**/*.rb") rd.options = RDOC_OPTIONS end -CLEAN.include [ "*.gem*", "pkg", "rdoc" ] +CLEAN.include [ "*.gem*", "pkg", "rdoc", "test/tmp" ] spec = Gem::Specification.new do |s| s.name = PKG_NAME s.version = PKG_VERSION s.authors = AUTHORS