-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlims-print-label-app.gemspec
30 lines (25 loc) · 1.12 KB
/
lims-print-label-app.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 -*-
$:.push File.expand_path("../lib", __FILE__)
require "lims-print-label-app/version"
Gem::Specification.new do |s|
s.name = "lims-print-label-app"
s.version = Lims::PrintLabelApp::VERSION
s.authors = ["Karoly Erdos"]
s.email = ["[email protected]"]
s.homepage = "http://sanger.ac.uk/"
s.summary = %q{This application prints a label on a label printer with the given input parameters.}
s.description = %q{Provides utility functions for the new LIMS and USG}
s.rubyforge_project = "lims-print-label-app"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib", "spec"]
s.add_dependency('rest-client')
s.add_dependency('virtus', '0.2.0')
s.add_dependency('aequitas')
s.add_dependency('colored')
s.add_development_dependency('rake', '~> 0.9.2')
s.add_development_dependency('rspec', '~> 2.8.0')
s.add_development_dependency('hashdiff')
s.add_development_dependency('github-markup', '~> 0.7.1')
end