-
Notifications
You must be signed in to change notification settings - Fork 19
/
jettywrapper.gemspec
34 lines (28 loc) · 1.27 KB
/
jettywrapper.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "jettywrapper/version"
require 'bundler'
Gem::Specification.new do |s|
s.name = "jettywrapper"
s.version = Jettywrapper::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Chris Beer", "Justin Coyne", "Bess Sadler"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/projecthydra/jettywrapper"
s.summary = %q{Convenience tasks for working with jetty from within a ruby project.}
s.description = %q{Spin up a jetty instance (e.g., the one at https://github.com/projecthydra/hydra-jetty) and wrap test in it. This lets us run tests against a real copy of solr and fedora.}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {spec}/*`.split("\n")
s.require_paths = ["lib"]
s.license = 'APACHE2'
s.required_rubygems_version = ">= 1.3.6"
s.add_dependency "childprocess"
s.add_dependency "i18n"
s.add_dependency "activesupport", ">=3.0.0"
s.add_dependency 'rubyzip', "~> 1.0"
s.add_development_dependency "rspec", '~> 3.2'
s.add_development_dependency "rspec-its"
s.add_development_dependency 'rake'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'yard'
end