/usr/share/rubygems-integration/1.9.1/specifications/fssm-0.2.10.gemspec is in ruby-fssm 0.2.10-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 | # -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "fssm"
s.version = "0.2.10"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Travis Tilley", "Nathan Weizenbaum", "Chris Eppstein", "Jonathan Castello", "Tuomas Kareinen"]
s.date = "2013-01-27"
s.description = "The File System State Monitor keeps track of the state of any number of paths and will fire events when said state changes (create/update/delete). FSSM supports using FSEvents on MacOS, Inotify on GNU/Linux, and polling anywhere else."
s.email = ["ttilley@gmail.com"]
s.files = [".gitignore", ".travis.yml", "Gemfile", "LICENSE", "README.markdown", "Rakefile", "example.rb", "ext/rakefile.rb", "fssm.gemspec", "lib/fssm.rb", "lib/fssm/backends/inotify.rb", "lib/fssm/backends/polling.rb", "lib/fssm/backends/rbfsevent.rb", "lib/fssm/monitor.rb", "lib/fssm/path.rb", "lib/fssm/pathname.rb", "lib/fssm/state/directory.rb", "lib/fssm/state/file.rb", "lib/fssm/support.rb", "lib/fssm/tree.rb", "lib/fssm/version.rb", "profile/prof-cache.rb", "profile/prof-fssm-pathname.html", "profile/prof-pathname-rubinius.rb", "profile/prof-pathname.rb", "profile/prof-plain-pathname.html", "profile/prof.html", "spec/count_down_latch.rb", "spec/monitor_spec.rb", "spec/path_spec.rb", "spec/root/duck/quack.txt", "spec/root/file.css", "spec/root/file.rb", "spec/root/file.yml", "spec/root/moo/cow.txt", "spec/spec_helper.rb"]
s.homepage = "https://github.com/ttilley/fssm"
s.require_paths = ["lib"]
s.rubyforge_project = "fssm"
s.rubygems_version = "1.8.23"
s.summary = "File System State Monitor"
s.test_files = ["spec/count_down_latch.rb", "spec/monitor_spec.rb", "spec/path_spec.rb", "spec/root/duck/quack.txt", "spec/root/file.css", "spec/root/file.rb", "spec/root/file.yml", "spec/root/moo/cow.txt", "spec/spec_helper.rb"]
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>, [">= 0"])
s.add_development_dependency(%q<rspec>, [">= 2.4.0"])
else
s.add_dependency(%q<rake>, [">= 0"])
s.add_dependency(%q<rspec>, [">= 2.4.0"])
end
else
s.add_dependency(%q<rake>, [">= 0"])
s.add_dependency(%q<rspec>, [">= 2.4.0"])
end
end
|