Sha256: 9f0f9a8896e2c98de941ba33887b9af8e4bf01251bb6e48bde7c909db540959c

Contents?: true

Size: 709 Bytes

Versions: 5

Compression:

Stored size: 709 Bytes

Contents

#!/usr/bin/env ruby -w
# encoding: UTF-8
#
# = postrunner.rb -- PostRunner - Manage the data from your Garmin sport devices.
#
# Copyright (c) 2014 by Chris Schlaeger <cs@taskjuggler.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of version 2 of the GNU General Public License as
# published by the Free Software Foundation.
#

# Some dependencies may not be installed as Ruby Gems but as local sources.
# Add them to the LOAD_PATH.
%w( fit4ruby perobs ).each do |lib_dir|
  $:.unshift(File.join(File.dirname(__FILE__), '..', '..', lib_dir, 'lib'))
end
$:.unshift(File.dirname(__FILE__))

require 'postrunner/Main'

module PostRunner

  Main.new(ARGV)

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
postrunner-0.2.1 lib/postrunner.rb
postrunner-0.2.0 lib/postrunner.rb
postrunner-0.1.0 lib/postrunner.rb
postrunner-0.0.11 lib/postrunner.rb
postrunner-0.0.10 lib/postrunner.rb