Skip to content

Commit

Permalink
using jeweler for generating gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
shvets committed Apr 29, 2010
1 parent 1af11d8 commit be6c198
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions google-translate.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
s.name = %q{google-translate}
s.version = "0.6.6"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Alexander Shvets"]
s.date = %q{2010-04-29}
s.description = %q{Simple client for Google Translate API.}
s.email = %q{alexander.shvets@gmail.com}
s.executables = ["translate", "t"]
s.extra_rdoc_files = [
"README"
]
s.files = [
"CHANGES",
"README",
"Rakefile",
"VERSION",
"bin/t",
"bin/t.bat",
"bin/translate",
"bin/translate.bat",
"google_translate.gemspec",
"lib/google_translate.rb"
]
s.homepage = %q{http://github.com/shvets/google-translate}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.requirements = ["none"]
s.rubygems_version = %q{1.3.6}
s.summary = %q{Simple client for Google Translate API.}
s.test_files = [
"spec/spec_helper.rb",
"spec/translate_spec.rb"
]

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

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<json_pure>, [">= 1.1.4"])
else
s.add_dependency(%q<json_pure>, [">= 1.1.4"])
end
else
s.add_dependency(%q<json_pure>, [">= 1.1.4"])
end
end

0 comments on commit be6c198

Please sign in to comment.