Sha256: 84cfa7e0ecd020145998bdcbe34b53e0b1fc15513c63cec219251231fef901cd

Contents?: true

Size: 624 Bytes

Versions: 4

Compression:

Stored size: 624 Bytes

Contents

#!/usr/bin/env ruby 
# $Id: fliewr.rb 2009/02/08 21:48:53 EET paul Exp $ 
# 
=begin
  Flickr Viewr - Flicker Friends Photostream Viewer.

  Copyright (c) 2008, Paul Philippov <paul@ppds.ws>

  This software is released under the BSD License.
  http://creativecommons.org/licenses/BSD/
=end

app_file = File.symlink?(__FILE__) ? File.readlink(__FILE__) : __FILE__
APP_ROOT = File.expand_path(File.dirname(app_file))
Dir.glob(APP_ROOT + '/../**/').reverse.each { |d| $:.unshift d }

begin
  require 'rubygems'
rescue LoadError
  nil
end

require 'fliewr/core'

Fliewr::Core.new
Thread.new { Fliewr::StatusIcon.new }
$app.main

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
themactep-fliewr-2.0.0 bin/fliewr
themactep-fliewr-2.0.1 bin/fliewr
themactep-fliewr-2.0.2 bin/fliewr
themactep-fliewr-2.1.0 bin/fliewr