-
Notifications
You must be signed in to change notification settings - Fork 2
/
exlibris-aleph.gemspec
30 lines (25 loc) · 1.07 KB
/
exlibris-aleph.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
$:.push File.expand_path('../lib', __FILE__)
# Maintain your gem's version:
require 'exlibris/aleph/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'exlibris-aleph'
s.version = Exlibris::Aleph::VERSION
s.authors = ['Scot Dalton']
s.email = ['[email protected]']
s.homepage = 'https://github.com/scotdalton/exlibris-aleph'
s.summary = "Library to work with Exlibris' Aleph ILS."
s.description = "Library to handle Exlibris' Aleph ILS."
s.license = 'MIT'
s.files = Dir['lib/**/*'] + ['MIT-LICENSE', 'Rakefile', 'README.md']
s.test_files = Dir['spec/**/*']
s.add_dependency 'require_all', '~> 1.3.0'
s.add_dependency 'multi_xml', '~> 0.5.0'
s.add_dependency 'faraday', '~> 0.9.0'
s.add_dependency 'marc', '~> 0.8.0'
s.add_development_dependency 'rake', '~> 10.3.0'
s.add_development_dependency 'rspec', '~> 2.14.0'
s.add_development_dependency 'vcr', '~> 2.9.0'
s.add_development_dependency 'nokogiri', '~> 1.6.0'
s.add_development_dependency 'timecop', '~> 0.7.1'
end