forked from marcel/aws-s3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pulled gemspec out of Rakefile and fucked with Rakefile a bunch so th…
…at it wasn't so fucking deprecated
- Loading branch information
1 parent
d240cad
commit 496f7b6
Showing
5 changed files
with
29 additions
and
27 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
site/public/index.html | ||
pkg/ | ||
**.gem | ||
rdoc/ |
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,20 +1,23 @@ | ||
# -*- encoding: utf-8 -*- | ||
$:.push File.expand_path("../lib", __FILE__) | ||
|
||
Gem::Specification.new do |s| | ||
s.name = "aws-s3" | ||
s.version = "0.6.3" | ||
s.authors = ["Chris Small", "Marcel Molina (original)"] | ||
s.email = "[email protected]" | ||
s.homepage = "https://github.com/metasoarous/aws-s3" | ||
s.summary = "The standard AWS::S3 with improved support for expiration dates" | ||
s.description = "Enables the user to connect to Amazon Web Services using a rest interface." | ||
|
||
s.add_dependency "builder", ">=3.0" | ||
|
||
s.files = `git ls-files`.split("\n") | ||
s.test_files = `git ls-files -- {test,spec}/*`.split("\n") | ||
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } | ||
s.require_paths = ["lib"] | ||
|
||
s.name = 'aws-s3' | ||
s.version = Gem::Version.new(AWS::S3::Version) | ||
s.summary = "Client library for Amazon's Simple Storage Service's REST API" | ||
s.description = s.summary | ||
s.email = '[email protected]' | ||
s.author = 'Marcel Molina Jr.' | ||
s.has_rdoc = true | ||
s.extra_rdoc_files = %w(README COPYING INSTALL) | ||
s.homepage = 'http://amazon.rubyforge.org' | ||
s.rubyforge_project = 'amazon' | ||
s.files = FileList['Rakefile', 'lib/**/*.rb', 'bin/*', 'support/**/*.rb'] | ||
s.executables << 's3sh' | ||
s.test_files = Dir['test/**/*'] | ||
|
||
s.add_dependency 'xml-simple' | ||
s.add_dependency 'builder' | ||
s.add_dependency 'mime-types' | ||
s.rdoc_options = ['--title', "AWS::S3 -- Support for Amazon S3's REST api", | ||
'--main', 'README', | ||
'--line-numbers', '--inline-source'] | ||
end | ||
|