Skip to content

Commit

Permalink
fixed gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
jfriedlaender committed Oct 6, 2012
1 parent 32351f6 commit 52a011f
Showing 1 changed file with 4 additions and 16 deletions.
20 changes: 4 additions & 16 deletions aws-s3.gemspec
@@ -1,11 +1,6 @@
# encoding: utf-8

$:.push File.expand_path("../lib", __FILE__)

Gem::Specification.new do |s|
s.name = "AWS-S3"
s.version = AWS-S3::VERSION
s.platform = Gem::Platform::RUBY
s.name = "aws-s3"
s.version = '0.6.3'
s.authors = ["Joel Friedlaender"]
s.email = ["joel@redguava.com.au"]
s.homepage = "https://github.com/redguava/aws-s3"
Expand All @@ -14,13 +9,6 @@ Gem::Specification.new do |s|

# s.rubyforge_project = "heroku_cloud_backup"

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]

# s.add_runtime_dependency 'fog', '>= 0.7.2'
# s.add_runtime_dependency 'heroku', '>= 2.1.4'
# s.add_development_dependency 'rake'
# s.add_development_dependency 'minitest'
s.files = %w(CHANGELOG COPYING INSTALL Rakefile) + Dir['lib/**/*'] + Dir["bin/*"]
s.require_path = 'lib'
end

0 comments on commit 52a011f

Please sign in to comment.