Sha256: b96256b6d3a79e2fd2e7b15bd0a69f5a024d867aef4ce7e7a20711a83a2f2f5f

Contents?: true

Size: 531 Bytes

Versions: 2

Compression:

Stored size: 531 Bytes

Contents

#!/usr/bin/env ruby

require 'bundler/setup'
require 'ddql'

# You can add fixtures and/or initialization code here to make experimenting
# with your gem easier. You can also use a different console, if you like.

# (If you use this, don't forget to add pry to your Gemfile!)

PARSER = DDQL::Parser.new

begin
  require 'pry'
  puts 'Create a new instance of the parser or use the PARSER constant'
  Pry.start
rescue
  require "irb"
  puts 'Create a new instance of the parser or use the PARSER constant'
  IRB.start(__FILE__)
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ddql-1.0.1 bin/console
ddql-1.0.0 bin/console