forked from sanger/sequencescape-client-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsequencescape-api.gemspec
More file actions
29 lines (24 loc) · 1.06 KB
/
sequencescape-api.gemspec
File metadata and controls
29 lines (24 loc) · 1.06 KB
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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "sequencescape-api/version"
Gem::Specification.new do |s|
s.name = "sequencescape-client-api"
s.version = Sequencescape::Api::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Matthew Denner"]
s.email = ["md12@sanger.ac.uk"]
s.homepage = ""
s.summary = %q{Gem for the client side of the Sequencescape API}
s.description = %q{Provides all of the necessary code for interacting with the Sequencescape API}
s.rubyforge_project = "sequencescape-client-api"
s.files = `git ls-files`.split("\n")
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"]
s.add_dependency('activesupport', '~> 3.0.0')
s.add_dependency('activemodel', '~> 3.0.0')
s.add_dependency('i18n')
s.add_dependency('yajl-ruby', '~> 1.1.0')
s.add_development_dependency('rspec', '~> 2.11.0')
s.add_development_dependency('webmock')
end