Sha256: 4682dcd5e3732c357a043e93bb782798997e5bcdc8251e7d6541f4ebfd56dfae

Contents?: true

Size: 1.49 KB

Versions: 25

Compression:

Stored size: 1.49 KB

Contents

# encoding: utf-8

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'rake'

require 'jeweler'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "parse_resource"
  gem.homepage = "http://github.com/adelevie/parse_resource"
  gem.license = "MIT"
  gem.summary = %Q{An ActiveResource-like wrapper for the Parse REST api.}
  gem.description = %Q{}
  gem.email = "adelevie@gmail.com"
  gem.authors = ["Alan deLevie"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'lib' << 'test'
  test.pattern = 'test/**/test_*.rb'
  test.verbose = true
end

require 'rcov/rcovtask'
Rcov::RcovTask.new do |test|
  test.libs << 'test'
  test.pattern = 'test/**/test_*.rb'
  test.verbose = true
  test.rcov_opts << '--exclude "gems/*"'
end

require 'reek/rake/task'
Reek::Rake::Task.new do |t|
  t.fail_on_error = true
  t.verbose = false
  t.source_files = 'lib/**/*.rb'
end

task :default => :test

require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "parse_resource #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
parse_resource-1.7.3 Rakefile
parse_resource-1.7.2 Rakefile
parse_resource-1.7.1 Rakefile
parse_resource-1.7.0 Rakefile
parse_resource-1.6.3 Rakefile
parse_resource-1.6.2 Rakefile
parse_resource-1.6.1 Rakefile
parse_resource-1.6.0 Rakefile
parse_resource-1.5.11 Rakefile
parse_resource-1.5.9 Rakefile
parse_resource-1.5.8 Rakefile
parse_resource-1.5.7 Rakefile
parse_resource-1.5.6 Rakefile
parse_resource-1.5.5 Rakefile
parse_resource-1.5.4 Rakefile
parse_resource-1.5.2 Rakefile
parse_resource-1.5.1 Rakefile
parse_resource-1.4.2 Rakefile
parse_resource-1.4.1 Rakefile
parse_resource-1.4.0 Rakefile