-
Notifications
You must be signed in to change notification settings - Fork 1
/
archiver.gemspec
21 lines (20 loc) · 1.53 KB
/
archiver.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
$:.push File.expand_path("../lib", __FILE__)
require 'archiver/version'
spec = Gem::Specification.new do |s|
s.name = 'archiver'
s.version = Archiver::VERSION
s.summary = "Archiving, metric, and website viewer package for automating MS workflows and quality control"
s.description = %{Archiver provides a tool for managing and automating the storage of data produced by Thermo LTQ series MS instruments to collect all files from each run and archive them to a storage/archive location. Also incorporated is the automatic (user specified settings) generation of performance metrics from the NIST metric package. Additionally, there are user specified alerts and a graphing system for the generation of comparisons between metrics. Finally, the whole package is brought together into a database for long-term information storage, and a website front-end for user experience and simplified viewing. }
s.files = Dir['lib/**/*.rb'] + Dir['spec/**/*.rb'] + %w[README.md Gemfile Rakefile] + Dir['lib/**/*.rake'] + Dir['app/models/*.rb'] + Dir['config/**/*.rb'] + Dir['config/database.yml'] + Dir['config/newrelic.yml']
s.require_path = 'lib'
s.executables << 'archiver'
s.executables << 'archiver-install'
s.executables << 'metriculator'
s.add_dependency('bundler', '>=1.0.15')
s.add_dependency('rake')
s.extra_rdoc_files = Dir['[A-Z]*']
#s.rdoc_options << '--title' << 'Builder -- Easy XML Building'
s.authors = ["Ryan Taylor", "Jamison Dance"]
s.email = "[email protected]"
s.homepage = "https://github.com/princelab/rails-metric_site"
end