/usr/share/rubygems-integration/1.9.1/specifications/bcrypt-ruby-3.1.2.gemspec is in ruby-bcrypt 3.1.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 33 34 35 36 37 38 39 40 | # -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "bcrypt-ruby"
s.version = "3.1.2"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Coda Hale"]
s.date = "2013-08-26"
s.description = " bcrypt() is a sophisticated and secure hash algorithm designed by The OpenBSD project\n for hashing passwords. bcrypt-ruby provides a simple, humane wrapper for safely handling\n passwords.\n"
s.email = "coda.hale@gmail.com"
s.extensions = ["ext/mri/extconf.rb"]
s.extra_rdoc_files = ["README.md", "COPYING", "CHANGELOG", "lib/bcrypt/engine.rb", "lib/bcrypt/error.rb", "lib/bcrypt/password.rb", "lib/bcrypt.rb"]
s.files = [".gitignore", ".rspec", ".travis.yml", "CHANGELOG", "COPYING", "Gemfile", "Gemfile.lock", "README.md", "Rakefile", "bcrypt-ruby.gemspec", "ext/jruby/bcrypt_jruby/BCrypt.java", "ext/mri/bcrypt_ext.c", "ext/mri/crypt.c", "ext/mri/crypt.h", "ext/mri/crypt_blowfish.c", "ext/mri/crypt_gensalt.c", "ext/mri/extconf.rb", "ext/mri/ow-crypt.h", "ext/mri/wrapper.c", "lib/bcrypt.rb", "lib/bcrypt/engine.rb", "lib/bcrypt/error.rb", "lib/bcrypt/password.rb", "spec/TestBCrypt.java", "spec/bcrypt/engine_spec.rb", "spec/bcrypt/error_spec.rb", "spec/bcrypt/password_spec.rb", "spec/spec_helper.rb"]
s.homepage = "http://bcrypt-ruby.rubyforge.org"
s.licenses = ["MIT"]
s.rdoc_options = ["--title", "bcrypt-ruby", "--line-numbers", "--inline-source", "--main", "README.md"]
s.require_paths = ["lib"]
s.rubyforge_project = "bcrypt-ruby"
s.rubygems_version = "1.8.23"
s.summary = "OpenBSD's bcrypt() password hashing algorithm."
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_development_dependency(%q<rake-compiler>, ["~> 0.9.0"])
s.add_development_dependency(%q<rspec>, [">= 0"])
s.add_development_dependency(%q<rdoc>, [">= 0"])
else
s.add_dependency(%q<rake-compiler>, ["~> 0.9.0"])
s.add_dependency(%q<rspec>, [">= 0"])
s.add_dependency(%q<rdoc>, [">= 0"])
end
else
s.add_dependency(%q<rake-compiler>, ["~> 0.9.0"])
s.add_dependency(%q<rspec>, [">= 0"])
s.add_dependency(%q<rdoc>, [">= 0"])
end
end
|