This repository was archived by the owner on Apr 28, 2024. It is now read-only.
forked from mnaberez/tdms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruby_tdms.gemspec
More file actions
38 lines (29 loc) · 1.44 KB
/
ruby_tdms.gemspec
File metadata and controls
38 lines (29 loc) · 1.44 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
30
31
32
33
34
35
36
37
38
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ruby_tdms/version'
Gem::Specification.new do |spec|
spec.name = 'ruby_tdms'
spec.version = RubyTDMS::VERSION
spec.authors = ['Mike Naberezny', 'Aaron Ten Clay']
spec.email = ['aarontc@aarontc.com']
spec.summary = %q{Reads TDMS files. TDMS is a binary file format for measurement data created by National Instruments.}
spec.description = <<-DESCRIPTION
TDMS is a binary file format for measurement data. It was created by National Instruments.
National Instruments software such as LabVIEW, DIAdem, and Measurement Studio support reading and writing TDMS files. NI also provides a DLL written in C for using TDMS files on Windows.
RubyTDMS provides a convenient way to work with TDMS files on Unix-like platforms.
The RubyTDMS gem was formerly known as "TDMS".
DESCRIPTION
spec.homepage = 'https://github.com/aarontc/ruby_tdms'
spec.license = 'BSD'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_dependency 'coalesce'
spec.add_dependency 'require_all'
spec.add_development_dependency 'bundler', '>= 1.7'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'minitest'
spec.add_development_dependency 'simplecov'
end