Sha256: 82a87dde9890196b14f808c705897b31c7423f30c360a35ebcdce7fc3e48eff2

Contents?: true

Size: 1.15 KB

Versions: 7

Compression:

Stored size: 1.15 KB

Contents

# encoding: utf-8

begin
  require 'bones'
rescue LoadError
  abort '### Please install the "bones" gem ###'
end

ensure_in_path 'lib'
proj = 'rest-graph'
require "#{proj}/version"

Bones{
  ruby_opts [''] # silence warning for now

  version RestGraph::VERSION

  depend_on 'rest-client'
  depend_on 'json',    :development => true
  depend_on 'rack',    :development => true

  depend_on 'rr',      :development => true
  depend_on 'webmock', :development => true
  depend_on 'bacon',   :development => true

  name    proj
  url     "http://github.com/cardinalblue/#{proj}"
  authors ['Cardinal Blue', 'Lin Jen-Shin (aka godfat 真常)']
  email   'dev (XD) cardinalblue.com'

  history_file   'CHANGES'
   readme_file   'README.rdoc'
   ignore_file   '.gitignore'
  rdoc.include   ['\w+']
  rdoc.exclude   ['test', 'doc', 'Rakefile']
}

CLEAN.include Dir['**/*.rbc']

task :default do
  Rake.application.options.show_task_pattern = /./
  Rake.application.display_tasks_and_comments
end

desc 'Run example tests'
task 'test:example' => ['gem:install'] do
  sh "cd example/rails; #{Gem.ruby} -S rake test"
end

desc 'Run all tests'
task 'test:all' => ['test', 'test:example']

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
rest-graph-1.4.5 Rakefile
rest-graph-1.4.4 Rakefile
rest-graph-1.4.3 Rakefile
rest-graph-1.4.2 Rakefile
rest-graph-1.4.1 Rakefile
rest-graph-1.4.0 Rakefile
rest-graph-1.3.0 Rakefile