Sha256: 73183acdd7c645c6f0323b762b10c2b5acf8229fbc55edd23892203ea1f9c1be

Contents?: true

Size: 580 Bytes

Versions: 8

Compression:

Stored size: 580 Bytes

Contents

#!/usr/bin/env ruby
# frozen_string_literal: true

require "bundler/setup"
require "itch_rewards"

# 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!)
# require "pry"
# Pry.start

require "irb"

def reload!
  root_dir = File.expand_path("..", __dir__)
  reload_dirs = %w[lib]
  reload_dirs.each do |dir|
    Dir.glob("#{root_dir}/#{dir}/**/*.rb").each { |f| load(f) }
  end
  puts "Reloaded"
end

IRB.start(__FILE__)

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
itch_rewards-0.2.1 bin/console
itch_rewards-0.2.0 bin/console
itch_rewards-0.1.5 bin/console
itch_rewards-0.1.4 bin/console
itch_rewards-0.1.3 bin/console
itch_rewards-0.1.2 bin/console
itch_rewards-0.1.1 bin/console
itch_rewards-0.1.0 bin/console