Sha256: b5e6dd5a1928ce5a30355b56a7bfe12a156be7af2012e3f3dc6fdc458b3980ec

Contents?: true

Size: 1.43 KB

Versions: 14

Compression:

Stored size: 1.43 KB

Contents

# encoding: utf-8

require 'rubygems'
require 'rake'
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 'jeweler'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "acts_as_cleo"
  gem.homepage = "http://github.com/blue-dog-archolite/acts_as_cleo"
  gem.license = "MIT"
  gem.summary = %Q{A Rails enabled Cleo API}
  gem.description = %Q{LinkedIn Open Source type ahead tool's REST API as a ruby gem. Now with Reddis support.}
  gem.email = "Blue.Dog.Archolite@gmail.com"
  gem.authors = ["Robert R. Meyer"]
  # 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

task :default => :test

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

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

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
acts_as_cleo-3.0.0 Rakefile
acts_as_cleo-2.4.5 Rakefile
acts_as_cleo-2.4.4 Rakefile
acts_as_cleo-2.4.3 Rakefile
acts_as_cleo-2.4.2 Rakefile
acts_as_cleo-2.4.1 Rakefile
acts_as_cleo-2.4.0 Rakefile
acts_as_cleo-2.3.0 Rakefile
acts_as_cleo-2.2.1 Rakefile
acts_as_cleo-2.2.0 Rakefile
acts_as_cleo-2.1.2 Rakefile
acts_as_cleo-2.1.1 Rakefile
acts_as_cleo-2.1.0 Rakefile
acts_as_cleo-2.0.1 Rakefile