Sha256: 4f9f1aa7d1218a5cc6d15b13dc8373c469dbe09d73a54f33f2738c36a2300d79

Contents?: true

Size: 617 Bytes

Versions: 1

Compression:

Stored size: 617 Bytes

Contents

#!/usr/bin/env ruby

trap("INT") { print "\nExiting. \n"; exit }
$:.unshift File.expand_path("../../lib", __FILE__)
require 'cli'

begin
  Exercism::CLI.start
rescue StandardError => e
  puts
  puts "ERROR: Something went wrong. Exiting."
  puts e.message
  puts
  raise e if ENV['EXERCISM_ENV'] =~ /test|development/
end

puts <<-DEPRECATED

The exercism ruby gem has been deprecated.

Please uninstall the gem, and install the latest CLI
from https://github.com/exercism/cli/releases/latest

For more info about getting started with the CLI, see
http://exercism.io/help/how-to-access-exercises

Thanks!

DEPRECATED

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
exercism-0.0.28 bin/exercism