diff options
-rw-r--r-- | README.md | 6 | ||||
-rw-r--r-- | lib/postrunner/version.rb | 2 | ||||
-rw-r--r-- | postrunner.gemspec | 16 |
3 files changed, 13 insertions, 11 deletions
@@ -2,12 +2,14 @@ PostRunner is an application to manage FIT files such as those produced by Garmin products like the Forerunner 620 (FR620). It allows you to -import the files from the device and inspect them. +import the files from the device and inspect them. ## Installation PostRunner is a [http://www.ruby-lang.org](Ruby) application. You need -to have a Ruby 2.0 or later runtime environment installed. +to have a Ruby 2.0 or later runtime environment installed. This +application was developed and tested on Linux but may work on other +operating systems as well. ``` $ gem install postrunner diff --git a/lib/postrunner/version.rb b/lib/postrunner/version.rb index 83b626e..f757890 100644 --- a/lib/postrunner/version.rb +++ b/lib/postrunner/version.rb @@ -11,5 +11,5 @@ # module PostRunner - VERSION = "0.0.5" + VERSION = "0.0.6" end diff --git a/postrunner.gemspec b/postrunner.gemspec index 9f307f2..7a438b2 100644 --- a/postrunner.gemspec +++ b/postrunner.gemspec @@ -7,9 +7,9 @@ Gem::Specification.new do |spec| spec.name = "postrunner" spec.version = PostRunner::VERSION spec.authors = ["Chris Schlaeger"] - spec.email = ["chris@linux.com"] + spec.email = ["chris@taskjuggler.org"] 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.description = %q{This application will allow you to manage and analyze .FIT files such as those generated by Garmin GPS devices. The application was developed for the Garmin Forerunner 620. Other devices may work as well. They need to export the data as USB Mass Storage devices.} spec.homepage = 'https://github.com/scrapper/postrunner' spec.license = "GNU GPL version 2" @@ -19,11 +19,11 @@ Gem::Specification.new do |spec| spec.require_paths = ["lib"] spec.required_ruby_version = '>=2.0' - spec.add_dependency "fit4ruby", "~> 0.0.3" - spec.add_dependency "nokogiri", "~> 1.6" + spec.add_dependency 'fit4ruby', '~> 0.0.4' + spec.add_dependency 'nokogiri', '~> 1.6' - spec.add_development_dependency "bundler", "~> 1.6" - spec.add_development_dependency "rake" - spec.add_development_dependency "rspec" - spec.add_development_dependency "yard" + spec.add_development_dependency 'bundler', '~> 1.6' + spec.add_development_dependency 'rake', '~> 0.9.6' + spec.add_development_dependency 'rspec', '~> 2.14.1' + spec.add_development_dependency 'yard', '~> 0.8.7' end |