Sha256: 5abd319e87b412dc6aff661621515dfd0f75c589c79209eb24052ddcbdcb2799

Contents?: true

Size: 401 Bytes

Versions: 5

Compression:

Stored size: 401 Bytes

Contents

#!/usr/bin/env ruby
begin
  require 'mollie-bank'
rescue LoadError => e
  require 'rubygems'
  path = File.expand_path '../../lib', __FILE__
  $:.unshift(path) if File.directory?(path) && !$:.include?(path)
  require 'mollie-bank'
end

puts "== Mollie Bank started!"
puts "   please visit: http://localhost:4567/"
puts ""

MollieBank::Application.run!

puts ""
puts "== Mollie Bank stopped. Good bye"

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
mollie-bank-0.0.5 bin/mollie-bank
mollie-bank-0.0.4 bin/mollie-bank
mollie-bank-0.0.3 bin/mollie-bank
mollie-bank-0.0.2 bin/mollie-bank
mollie-bank-0.0.1 bin/mollie-bank