-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuwdc.gemspec
30 lines (26 loc) · 1.12 KB
/
uwdc.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'uwdc/version'
Gem::Specification.new do |gem|
gem.name = "uwdc"
gem.version = UWDC::VERSION
gem.authors = ["Eric Larson"]
gem.email = ["[email protected]"]
gem.description = %q{Gem for the University of Wisconsin Digital Collections}
gem.summary = %q{Use the UWDC collections}
gem.homepage = "https://github.com/ewlarson/uwdc"
gem.add_dependency('httpclient', '~>2.3.3')
gem.add_dependency('nokogiri', '~>1.5.2')
gem.add_dependency('json', '~>1.8.0')
gem.add_dependency('activesupport', '~>3.2.13')
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'guard-rspec'
gem.add_development_dependency 'rb-fsevent'
gem.add_development_dependency 'ruby-prof'
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
end