Sha256: 02b201b3e5535d34edad8e0571228dd1a07bc812b65d2a7e299938241a3069e0

Contents?: true

Size: 562 Bytes

Versions: 11

Compression:

Stored size: 562 Bytes

Contents

#!/usr/bin/env ruby

root = File.expand_path(File.join(File.dirname(__FILE__),'..'))
if File.directory?(File.join(root,'.git'))
  Dir.chdir(root) do
    begin
      require 'bundler/setup'
      require 'dedalus'
      Dedalus::PatternLibrary::Application.kickstart!({
        setup: {
          library_name: "Dedalus",
          module_to_search: # Dedalus::PatternLibrary
            Dedalus::Elements
        }
      })
    rescue LoadError => e
      warn e.message
      warn "Run `gem install bundler` to install Bundler"
      exit(-1)
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
dedalus-0.2.20 bin/dedalus
dedalus-0.2.19 bin/dedalus
dedalus-0.2.18 bin/dedalus
dedalus-0.2.17 bin/dedalus
dedalus-0.2.16 bin/dedalus
dedalus-0.2.15 bin/dedalus
dedalus-0.2.13 bin/dedalus
dedalus-0.2.12 bin/dedalus
dedalus-0.2.11 bin/dedalus
dedalus-0.2.10 bin/dedalus
dedalus-0.2.9 bin/dedalus