Sha256: fdc854f1f09ea065de2f6d8541cfac922efa4ed2c547d526b6f90b80c5f419c1

Contents?: true

Size: 720 Bytes

Versions: 25

Compression:

Stored size: 720 Bytes

Contents

#!/usr/bin/env ruby -w
# encoding: UTF-8
#
# = postrunner.rb -- PostRunner - Manage the data from your Garmin sport devices.
#
# Copyright (c) 2014, 2016 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.main(ARGV)

end

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
postrunner-1.2.0 lib/postrunner.rb
postrunner-1.1.1 lib/postrunner.rb
postrunner-1.1.0 lib/postrunner.rb
postrunner-1.0.5 lib/postrunner.rb
postrunner-1.0.4 lib/postrunner.rb
postrunner-1.0.2 lib/postrunner.rb
postrunner-1.0.1 lib/postrunner.rb
postrunner-1.0.0 lib/postrunner.rb
postrunner-0.12.0 lib/postrunner.rb
postrunner-0.11.0 lib/postrunner.rb
postrunner-0.10.1 lib/postrunner.rb
postrunner-0.10.0 lib/postrunner.rb
postrunner-0.9.0 lib/postrunner.rb
postrunner-0.8.1 lib/postrunner.rb
postrunner-0.8.0 lib/postrunner.rb
postrunner-0.7.5 lib/postrunner.rb
postrunner-0.7.4 lib/postrunner.rb
postrunner-0.7.3 lib/postrunner.rb
postrunner-0.7.2 lib/postrunner.rb
postrunner-0.7.1 lib/postrunner.rb