-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathroart.gemspec
39 lines (35 loc) · 2.45 KB
/
roart.gemspec
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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{roart}
s.version = "0.1.9"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["PJ Davis"]
s.date = %q{2010-09-15}
s.description = %q{Interface for working with Request Tracker (RT) tickets inspired by ActiveRecord.}
s.email = %q{[email protected]}
s.extra_rdoc_files = ["History.txt", "README.rdoc", "spec/test_data/full_history.txt", "spec/test_data/search_ticket.txt", "spec/test_data/single_history.txt", "spec/test_data/ticket.txt"]
s.files = ["History.txt", "README.rdoc", "Rakefile", "lib/roart.rb", "lib/roart/callbacks.rb", "lib/roart/connection.rb", "lib/roart/connection_adapter.rb", "lib/roart/connection_adapters/mechanize_adapter.rb", "lib/roart/core/hash.rb", "lib/roart/errors.rb", "lib/roart/history.rb", "lib/roart/roart.rb", "lib/roart/ticket.rb", "lib/roart/ticket_page.rb", "lib/roart/validations.rb", "roart.gemspec", "spec/roart/callbacks_spec.rb", "spec/roart/connection_adapter_spec.rb", "spec/roart/connection_spec.rb", "spec/roart/core/hash_spec.rb", "spec/roart/history_spec.rb", "spec/roart/roart_spec.rb", "spec/roart/ticket_page_spec.rb", "spec/roart/ticket_spec.rb", "spec/roart/validation_spec.rb", "spec/roart_spec.rb", "spec/spec_helper.rb", "spec/test_data/full_history.txt", "spec/test_data/search_ticket.txt", "spec/test_data/single_history.txt", "spec/test_data/ticket.txt"]
s.homepage = %q{http://github.com/pjdavis/roart}
s.rdoc_options = ["--main", "README.rdoc"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{roart}
s.rubygems_version = %q{1.3.7}
s.summary = %q{Interface for working with Request Tracker (RT) tickets inspired by ActiveRecord}
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<mechanize>, [">= 1.0.0"])
s.add_runtime_dependency(%q<activesupport>, [">= 2.0.0"])
s.add_development_dependency(%q<bones>, [">= 2.5.1"])
else
s.add_dependency(%q<mechanize>, [">= 1.0.0"])
s.add_dependency(%q<activesupport>, [">= 2.0.0"])
s.add_dependency(%q<bones>, [">= 2.5.1"])
end
else
s.add_dependency(%q<mechanize>, [">= 1.0.0"])
s.add_dependency(%q<activesupport>, [">= 2.0.0"])
s.add_dependency(%q<bones>, [">= 2.5.1"])
end
end