Skip to content

Commit

Permalink
Merge branch 'refs/heads/master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
kjwierenga committed May 9, 2011
2 parents 3e7a44b + 79a0eb8 commit ca5a123
Showing 1 changed file with 39 additions and 49 deletions.
88 changes: 39 additions & 49 deletions ralf.gemspec
@@ -1,15 +1,15 @@
# Generated by jeweler # Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY # DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*- # -*- encoding: utf-8 -*-


Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = %q{ralf} s.name = %q{ralf}
s.version = "1.0.3" s.version = "1.1.0"


s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Klaas Jan Wierenga", "Leon Berenschot"] s.authors = ["Klaas Jan Wierenga", "Leon Berenschot"]
s.date = %q{2010-11-30} s.date = %q{2011-05-09}
s.default_executable = %q{ralf} s.default_executable = %q{ralf}
s.description = %q{ Download logfiles from Amazon S3 buckets to local disk and combine them in one Apache CLF per bucket s.description = %q{ Download logfiles from Amazon S3 buckets to local disk and combine them in one Apache CLF per bucket
} }
Expand All @@ -19,68 +19,58 @@ Gem::Specification.new do |s|
"README.rdoc" "README.rdoc"
] ]
s.files = [ s.files = [
".gitignore", ".rvmrc",
"README.rdoc", "README.rdoc",
"Rakefile", "Rakefile",
"VERSION", "VERSION",
"bin/ralf", "bin/ralf",
"lib/ralf.rb", "lib/ralf.rb",
"lib/ralf/bucket.rb", "lib/ralf/bucket.rb",
"lib/ralf/config.rb", "lib/ralf/config.rb",
"lib/ralf/interpolation.rb", "lib/ralf/interpolation.rb",
"lib/ralf/log.rb", "lib/ralf/log.rb",
"lib/ralf/option_parser.rb", "lib/ralf/option_parser.rb",
"ralf.gemspec", "ralf.gemspec",
"spec/fixtures/apache.log", "spec/fixtures/apache.log",
"spec/fixtures/example_buckets.yaml", "spec/fixtures/example_buckets.yaml",
"spec/ralf/bucket_spec.rb", "spec/ralf/bucket_spec.rb",
"spec/ralf/config_spec.rb", "spec/ralf/config_spec.rb",
"spec/ralf/interpolation_spec.rb", "spec/ralf/interpolation_spec.rb",
"spec/ralf/log_spec.rb", "spec/ralf/log_spec.rb",
"spec/ralf/option_parser_spec.rb", "spec/ralf/option_parser_spec.rb",
"spec/ralf_spec.rb", "spec/ralf_spec.rb",
"spec/spec.opts", "spec/spec.opts",
"spec/spec_helper.rb", "spec/spec_helper.rb",
"spec/support/fakeweb.rb" "spec/support/fakeweb.rb"
] ]
s.homepage = %q{http://github.com/kjwierenga/ralf} s.homepage = %q{http://github.com/kjwierenga/ralf}
s.rdoc_options = ["--charset=UTF-8", "--exclude", "."] s.rdoc_options = ["--exclude", "."]
s.require_paths = ["lib"] s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7} s.rubygems_version = %q{1.3.7}
s.summary = %q{Retrieve Amazon Log Files} s.summary = %q{Retrieve Amazon Log Files}
s.test_files = [
"spec/ralf/bucket_spec.rb",
"spec/ralf/config_spec.rb",
"spec/ralf/interpolation_spec.rb",
"spec/ralf/log_spec.rb",
"spec/ralf/option_parser_spec.rb",
"spec/ralf_spec.rb",
"spec/spec_helper.rb",
"spec/support/fakeweb.rb"
]


if s.respond_to? :specification_version then if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3 s.specification_version = 3


if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<rspec>, [">= 1.3.0"]) s.add_development_dependency(%q<rspec>, ["~> 1.3.0"])
s.add_development_dependency(%q<fakeweb>, [">= 1.2.8"]) s.add_development_dependency(%q<fakeweb>, ["~> 1.2.8"])
s.add_runtime_dependency(%q<right_aws>, [">= 1.10.0"]) s.add_runtime_dependency(%q<right_aws>, ["~> 1.10.0"])
s.add_runtime_dependency(%q<logmerge>, [">= 1.0.2"]) s.add_runtime_dependency(%q<logmerge>, ["~> 1.0.2"])
s.add_runtime_dependency(%q<chronic>, [">= 0.2.3"]) s.add_runtime_dependency(%q<chronic>, [">= 0.2.3"])
else else
s.add_dependency(%q<rspec>, [">= 1.3.0"]) s.add_dependency(%q<rspec>, ["~> 1.3.0"])
s.add_dependency(%q<fakeweb>, [">= 1.2.8"]) s.add_dependency(%q<fakeweb>, ["~> 1.2.8"])
s.add_dependency(%q<right_aws>, [">= 1.10.0"]) s.add_dependency(%q<right_aws>, ["~> 1.10.0"])
s.add_dependency(%q<logmerge>, [">= 1.0.2"]) s.add_dependency(%q<logmerge>, ["~> 1.0.2"])
s.add_dependency(%q<chronic>, [">= 0.2.3"]) s.add_dependency(%q<chronic>, [">= 0.2.3"])
end end
else else
s.add_dependency(%q<rspec>, [">= 1.3.0"]) s.add_dependency(%q<rspec>, ["~> 1.3.0"])
s.add_dependency(%q<fakeweb>, [">= 1.2.8"]) s.add_dependency(%q<fakeweb>, ["~> 1.2.8"])
s.add_dependency(%q<right_aws>, [">= 1.10.0"]) s.add_dependency(%q<right_aws>, ["~> 1.10.0"])
s.add_dependency(%q<logmerge>, [">= 1.0.2"]) s.add_dependency(%q<logmerge>, ["~> 1.0.2"])
s.add_dependency(%q<chronic>, [">= 0.2.3"]) s.add_dependency(%q<chronic>, [">= 0.2.3"])
end end
end end
Expand Down

0 comments on commit ca5a123

Please sign in to comment.