Skip to content

Commit

Permalink
gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
martinpoljak committed May 27, 2011
1 parent e14cd24 commit 60e199d
Show file tree
Hide file tree
Showing 2 changed files with 96 additions and 0 deletions.
31 changes: 31 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
GEM
remote: http://rubygems.org/
specs:
command-builder (0.1.0)
hash-utils (>= 0.7.0)
git (1.2.5)
hash-utils (0.15.0)
jeweler (1.5.2)
bundler (~> 1.0.0)
git (>= 1.2.5)
rake
lookup-hash (0.2.0)
hash-utils (>= 0.11.0)
pipe-run (0.2.1)
rake (0.9.0)
unix-whereis (0.1.0)
command-builder (>= 0.1.0)
hash-utils (>= 0.9.0)
pipe-run (>= 0.1.0)

PLATFORMS
ruby

DEPENDENCIES
bundler (~> 1.0.0)
command-builder (>= 0.1.0)
hash-utils (>= 0.15.0)
jeweler (~> 1.5.2)
lookup-hash (>= 0.2.0)
pipe-run (>= 0.2.1)
unix-whereis (>= 0.1.0)
65 changes: 65 additions & 0 deletions jpegtran.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
s.name = %q{jpegtran}
s.version = "0.1.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = [%q{Martin Kozák}]
s.date = %q{2011-05-27}
s.email = %q{martinkozak@martinkozak.net}
s.extra_rdoc_files = [
"LICENSE.txt",
"README.md"
]
s.files = [
".document",
"Gemfile",
"LICENSE.txt",
"README.md",
"Rakefile",
"VERSION",
"lib/jpegtran.rb",
"test",
"test.jpg"
]
s.homepage = %q{https://github.com/martinkozak/jpegtran}
s.licenses = [%q{MIT}]
s.require_paths = [%q{lib}]
s.rubygems_version = %q{1.8.3}
s.summary = %q{Ruby interface to 'jpegtran' tool.}

if s.respond_to? :specification_version then
s.specification_version = 3

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<hash-utils>, [">= 0.15.0"])
s.add_runtime_dependency(%q<pipe-run>, [">= 0.2.1"])
s.add_runtime_dependency(%q<command-builder>, [">= 0.1.0"])
s.add_runtime_dependency(%q<unix-whereis>, [">= 0.1.0"])
s.add_runtime_dependency(%q<lookup-hash>, [">= 0.2.0"])
s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
s.add_development_dependency(%q<jeweler>, ["~> 1.5.2"])
else
s.add_dependency(%q<hash-utils>, [">= 0.15.0"])
s.add_dependency(%q<pipe-run>, [">= 0.2.1"])
s.add_dependency(%q<command-builder>, [">= 0.1.0"])
s.add_dependency(%q<unix-whereis>, [">= 0.1.0"])
s.add_dependency(%q<lookup-hash>, [">= 0.2.0"])
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
end
else
s.add_dependency(%q<hash-utils>, [">= 0.15.0"])
s.add_dependency(%q<pipe-run>, [">= 0.2.1"])
s.add_dependency(%q<command-builder>, [">= 0.1.0"])
s.add_dependency(%q<unix-whereis>, [">= 0.1.0"])
s.add_dependency(%q<lookup-hash>, [">= 0.2.0"])
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
end
end

0 comments on commit 60e199d

Please sign in to comment.