/usr/share/rubygems-integration/2.0/specifications/hashery-2.1.1.gemspec is in ruby-hashery 2.1.1-1.
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 | # -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "hashery"
s.version = "2.1.1"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Trans", "Kirk Haines", "Robert Klemme", "Jan Molic", "George Moschovitis", "Jeena Paradies", "Erik Veenstra"]
s.date = "2013-08-21"
s.description = "The Hashery is a tight collection of Hash-like classes. Included among its many offerings are the auto-sorting Dictionary class, the efficient LRUHash, the flexible OpenHash and the convenient KeyHash. Nearly every class is a subclass of the CRUDHash which defines a CRUD model on top of Ruby's standard Hash making it a snap to subclass and augment to fit any specific use case."
s.email = ["transfire@gmail.com"]
s.extra_rdoc_files = ["NOTICE.txt", "LICENSE.txt", "README.md", "HISTORY.md"]
s.files = [".index", ".yardopts", "demo/00_introduction.rdoc", "demo/01_open_hash.rdoc", "demo/02_query_hash.rdoc", "demo/03_casting_hash.rdoc", "demo/04_static_hash.rdoc", "demo/05_key_hash.rdoc", "demo/06_open_cascade.rdoc", "demo/07_fuzzy_hash.rdoc", "demo/08_propery_hash.rdoc", "demo/10_association.rdoc", "demo/applique/ae.rb", "demo/applique/hashery.rb", "lib/hashery/association.rb", "lib/hashery/casting_hash.rb", "lib/hashery/core_ext.rb", "lib/hashery/crud_hash.rb", "lib/hashery/dictionary.rb", "lib/hashery/fuzzy_hash.rb", "lib/hashery/ini_hash.rb", "lib/hashery/key_hash.rb", "lib/hashery/linked_list.rb", "lib/hashery/lru_hash.rb", "lib/hashery/open_cascade.rb", "lib/hashery/open_hash.rb", "lib/hashery/ordered_hash.rb", "lib/hashery/path_hash.rb", "lib/hashery/property_hash.rb", "lib/hashery/query_hash.rb", "lib/hashery/stash.rb", "lib/hashery/static_hash.rb", "lib/hashery.rb", "lib/hashery.yml", "test/case_association.rb", "test/case_casting_hash.rb", "test/case_core_ext.rb", "test/case_crud_hash.rb", "test/case_dictionary.rb", "test/case_ini_hash.rb", "test/case_key_hash.rb", "test/case_linked_list.rb", "test/case_lru_hash.rb", "test/case_open_cascade.rb", "test/case_open_hash.rb", "test/case_property_hash.rb", "test/case_query_hash.rb", "test/fixture/example.ini", "test/helper.rb", "README.md", "HISTORY.md", "NOTICE.txt", "LICENSE.txt"]
s.homepage = "http://rubyworks.github.com/hashery"
s.licenses = ["BSD-2-Clause"]
s.require_paths = ["lib"]
s.rubygems_version = "1.8.23"
s.summary = "Facets-bread collection of Hash-like classes."
s.test_files = ["test/case_ini_hash.rb", "test/case_casting_hash.rb", "test/case_open_cascade.rb", "test/case_crud_hash.rb", "test/case_core_ext.rb", "test/case_lru_hash.rb", "test/case_open_hash.rb", "test/case_dictionary.rb", "test/case_linked_list.rb", "test/case_association.rb", "test/case_property_hash.rb", "test/case_key_hash.rb", "test/helper.rb", "test/case_query_hash.rb"]
if s.respond_to? :specification_version then
s.specification_version = 4
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<qed>, [">= 0"])
s.add_development_dependency(%q<lemon>, [">= 0"])
else
s.add_dependency(%q<qed>, [">= 0"])
s.add_dependency(%q<lemon>, [">= 0"])
end
else
s.add_dependency(%q<qed>, [">= 0"])
s.add_dependency(%q<lemon>, [">= 0"])
end
end
|