-
Notifications
You must be signed in to change notification settings - Fork 7
/
active_public_resources.gemspec
27 lines (23 loc) · 1.09 KB
/
active_public_resources.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'active_public_resources/version'
Gem::Specification.new do |spec|
spec.name = "active_public_resources"
spec.version = ActivePublicResources::VERSION
spec.authors = ["Eric Berry"]
spec.email = ["[email protected]"]
spec.description = %q{ Normalized searching and browsing of public resources }
spec.summary = %q{ Normalized searching and browsing of public resources }
spec.homepage = "https://github.com/instructure/active_public_resources"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_dependency "activesupport", ">= 4.0.0"
spec.add_dependency "activemodel", ">= 4.0.0"
spec.add_dependency "iso8601", "~> 0.8.6"
spec.add_dependency "httparty", "~> 0.15.6"
spec.add_development_dependency "bundler", "~> 1.3"
end