diff options
author | Chris Schlaeger <chris@linux.com> | 2014-06-21 23:02:49 +0200 |
---|---|---|
committer | Chris Schlaeger <chris@linux.com> | 2014-06-21 23:02:49 +0200 |
commit | cc72a9807699b95363d0ae58aa5237d982946470 (patch) | |
tree | e120b723992e473de620f29d6d7ba2fcd235e505 /postrunner.gemspec | |
download | postrunner-cc72a9807699b95363d0ae58aa5237d982946470.zip |
Adding dump filter
Diffstat (limited to 'postrunner.gemspec')
-rw-r--r-- | postrunner.gemspec | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/postrunner.gemspec b/postrunner.gemspec new file mode 100644 index 0000000..cc6c537 --- /dev/null +++ b/postrunner.gemspec @@ -0,0 +1,24 @@ +# coding: utf-8 +lib = File.expand_path('../lib', __FILE__) +$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) +require 'postrunner/version' + +Gem::Specification.new do |spec| + spec.name = "postrunner" + spec.version = Postrunner::VERSION + spec.authors = ["Chris Schlaeger"] + spec.email = ["chris@linux.com"] + spec.summary = %q{Application to manage and analyze Garmin FIT files.} + spec.description = %q{This application will allow you to manage and analyze .FIT files as generated by Garmin GPS devices. The application was developed for the Garmin Forerunner 620. Other devices may or may not work. Only devices that expose themselves as USB Mass Storage devices are supported.} + spec.homepage = "TBD" + spec.license = "MIT" + + spec.files = `git ls-files -z`.split("\x0") + spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } + spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) + spec.require_paths = ["lib"] + + spec.add_development_dependency "bundler", "~> 1.6" + spec.add_development_dependency "rake" + spec.add_development_dependency "fit4ruby" +end |