Sha256: 90c225dbe31e55f29815fca727d7ed10908cba0d6ee92c3523613782cb6c5e6a

Contents?: true

Size: 579 Bytes

Versions: 73

Compression:

Stored size: 579 Bytes

Contents

begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end

require 'rdoc/task'

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'JsonApiClient'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end




Bundler::GemHelper.install_tasks

require 'rake/testtask'

Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.libs << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = false
end


task default: :test

Version data entries

73 entries across 73 versions & 2 rubygems

Version Path
json_api_client-0.9.5 Rakefile
json_api_client-1.0.1 Rakefile
json_api_client-1.0.0 Rakefile
json_api_client-1.0.0.beta7 Rakefile
json_api_client-1.0.0.beta6 Rakefile
json_api_client-0.9.4 Rakefile
json_api_client-0.9.3 Rakefile
json_api_client-1.0.0.beta5 Rakefile
json_api_client-1.0.0.beta4 Rakefile
json_api_client-0.9.2 Rakefile
json_api_client-1.0.0.beta3 Rakefile
json_api_client-1.0.0.beta2 Rakefile
json_api_client-0.9.0 Rakefile
json_api_client-1.0.0.beta Rakefile
json_api_client-0.8.1 Rakefile
json_api_client-0.8.0 Rakefile
json_api_client-0.7.1 Rakefile
json_api_client-0.7.0 Rakefile
json_api_client-0.6.0 Rakefile
json_api_client-0.5.1 Rakefile