Sha256: cf19c068a09e5c2ea3cd7618814dcadbd22c466f93bf4141db3756f292c7d182
Contents?: true
Size: 762 Bytes
Versions: 2
Compression:
Stored size: 762 Bytes
Contents
#!/usr/bin/env ruby if File.exists?(picnic = File.expand_path(File.dirname(File.expand_path(__FILE__))+'/../vendor/picnic/lib')) $: << picnic elsif File.exists?(picnic = File.expand_path(File.dirname(File.expand_path(__FILE__))+'/../../picnic/lib')) $: << picnic else require 'rubygems' # make things backwards-compatible for rubygems < 0.9.0 if respond_to?(:require_gem) puts "WARNING: aliasing gem to require_gem in #{__FILE__} -- you should update your RubyGems system!" alias gem require_gem end gem 'picnic' end require 'picnic/cli' cli = Picnic::Cli.new( 'rubycas-server', :app_module => 'CASServer', :app_file => File.expand_path(File.dirname(File.expand_path(__FILE__))+"/../lib/casserver.rb") ) cli.handle_cli_input
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
gunark-rubycas-server-0.8.0.20090225 | bin/rubycas-server |
gunark-rubycas-server-0.8.0.20090227 | bin/rubycas-server |