-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathlighthouse-api.gemspec
More file actions
22 lines (20 loc) · 850 Bytes
/
lighthouse-api.gemspec
File metadata and controls
22 lines (20 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Gem::Specification.new do |s|
s.name = %q{lighthouse-api}
s.version = "2.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Rick Olson", "Justin Palmer"]
s.email = ["justin@entp.com"]
s.extra_rdoc_files = ["LICENSE"]
s.files = Dir.glob("lib/**/*") + %w(LICENSE README.md)
s.has_rdoc = true
s.homepage = 'http://lighthouseapp.com/api'
s.rdoc_options = ["--main", "README.md"]
s.require_paths = ["lib"]
s.rubyforge_project = 'lighthouse'
s.rubygems_version = '1.2.0'
s.summary = %q{Ruby API wrapper for Lighthouse - http://lighthouseapp.com}
s.description = %q{Ruby API wrapper for Lighthouse - http://lighthouseapp.com}
s.test_files = []
s.add_dependency(%q<activesupport>, [">= 3.0.0"])
s.add_dependency(%q<activeresource>, [">= 3.0.0"])
end