forked from kingpong/ruby-mcrypt
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathruby-mcrypt.gemspec
More file actions
32 lines (28 loc) · 1.39 KB
/
ruby-mcrypt.gemspec
File metadata and controls
32 lines (28 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{ruby-mcrypt}
s.version = "0.1.0"
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
s.authors = ["Philip Garrett"]
s.date = %q{2009-09-09}
s.description = %q{Ruby bindings for libmcrypt}
s.email = %q{philip@pastemagazine.com}
s.extensions = ["ext/extconf.rb"]
s.extra_rdoc_files = ["README.rdoc", "ext/extconf.rb", "ext/mcrypt_wrapper.c", "lib/mcrypt.rb"]
s.files = ["Manifest", "README.rdoc", "Rakefile", "ext/extconf.rb", "ext/mcrypt_wrapper.c", "lib/mcrypt.rb", "ruby-mcrypt.gemspec", "test/generate/Makefile", "test/generate/generate_testcases.c", "test/helper.rb", "test/test_all.rb", "test/test_basics.rb", "test/test_brute.rb", "test/test_reciprocity.rb"]
s.homepage = %q{http://github.com/kingpong/ruby-mcrypt}
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Ruby-mcrypt", "--main", "README.rdoc"]
s.require_paths = ["lib", "ext"]
s.rubyforge_project = %q{ruby-mcrypt}
s.rubygems_version = %q{1.3.3}
s.summary = %q{ruby-mcrypt 0.0.1}
s.test_files = ["test/test_all.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
else
end
else
end
end