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.5.0 Rakefile
json_api_client-0.4.0 Rakefile
json_api_client-0.3.1 Rakefile
json_api_client-0.3.0 Rakefile
json_api_client-0.2.4 Rakefile
json_api_client-0.2.3 Rakefile
json_api_client-0.2.2 Rakefile
json_api_client-0.2.1 Rakefile
json_api_client-0.2.0 Rakefile
json_api_client-0.1.3 Rakefile
json_api_client-0.1.2 Rakefile
json_api_client-0.1.1 Rakefile
json_api_client-0.0.3 Rakefile