Sha256: e30d83970de185de89381131e6c5f293949c96338ed2469f062c5897e9751d1d

Contents?: true

Size: 1.24 KB

Versions: 4

Compression:

Stored size: 1.24 KB

Contents

# encoding: utf-8

require 'rubygems'

begin
  require 'bundler'
rescue LoadError => e
  warn e.message
  warn "Run `gem install bundler` to install Bundler."
  exit e.status_code
end

begin
  Bundler.setup(:development)
rescue Bundler::BundlerError => e
  warn e.message
  warn "Run `bundle install` to install missing gems."
  exit e.status_code
end

require 'rake'

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new

task :test    => :spec
task :default => :spec

require 'yard'
YARD::Rake::YardocTask.new  
task :doc => :yard

desc "Fire up an interactive terminal to play with"
task :console do
  require 'pry'
  require 'yaml'
  require File.expand_path(File.dirname(__FILE__) + '/lib/contextio')

  config = YAML.load_file File.expand_path(File.dirname(__FILE__) + '/spec/config.yml')
  @api = ContextIO.new(config['key'], config['secret'])

  # add ability to reload console
  def reload
    reload_msg = '# Reloading the console...'
    puts CodeRay.scan(reload_msg, :ruby).term
    Pry.save_history
    exec('rake console')
  end

  welcome = <<-EOS
    Welcome to the Context.IO developer console. If you put your API credentials in
    /spec/config.yml, you'll have a handle on the API named `@api` to play with.
  EOS

  puts welcome
  Pry.start
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
contextio-1.6.0 Rakefile
contextio-1.5.0 Rakefile
contextio-1.4.0 Rakefile
contextio-1.3.0 Rakefile