-
Notifications
You must be signed in to change notification settings - Fork 7
/
sword2ruby.gemspec
42 lines (31 loc) · 1.68 KB
/
sword2ruby.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
40
41
42
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "sword2ruby/version"
Gem::Specification.new do |s|
s.name = "sword2ruby"
s.version = Sword2Ruby::VERSION
s.authors = ["Mark MacGillivray, Martyn Whitwell"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/CottageLabs/sword2ruby"
s.summary = %q{Provides SWORD client functionality as per the SWORD 2.0 spec when run against a SWORD 2.0 compliant server.}
s.description = %q{The Sword2Ruby gem provides Sword client functionality when run against a Sword 2.0 compliant server.
It eases integration of Ruby applications with Sword servers, taking care of things like authentication,
deposit-receipts and the parsing of Sword tags.
It was developed as part of the JISC Sword 2.0 project. For more information on Sword, see:
http://www.swordapp.org/. The Sword 2 specification can be found at:
http://sword-app.svn.sourceforge.net/viewvc/sword-app/spec/tags/sword-2.0/SWORDProfile.html?revision=377
This code lives at https://github.com/CottageLabs/sword2ruby.}
s.rubyforge_project = "sword2ruby"
# The files included in the gem.
s.files = `git ls-files`.split("\n")
# Files that are used for testing the gem.
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
#Development Dependencies
s.add_development_dependency "rake"
s.add_development_dependency "rspec", "~> 2.8"
#Runtime Dependencies
s.add_runtime_dependency "atom-tools", "~> 2.0.5"
s.add_runtime_dependency "hpricot", "~> 0.8.3"
end