Sha256: 93f38ccc07599282a6d18da167d0680258b4230b0c316cf1c9a7ba9dfe238676

Contents?: true

Size: 1.42 KB

Versions: 6

Compression:

Stored size: 1.42 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://guides.rubygems.org/specification-reference/ for more options
  gem.name = "auto_autoloader"
  gem.homepage = "http://github.com/kaspernj/auto_autoloader"
  gem.license = "MIT"
  gem.summary = %(Autoload constants in natural subfolders from the original class in Ruby with a single line of code.)
  gem.description = %(Autoload constants in natural subfolders from the original class in Ruby with a single line of code.)
  gem.email = "k@spernj.org"
  gem.authors = ["kaspernj"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

require "rspec/core"
require "rspec/core/rake_task"
RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = FileList["spec/**/*_spec.rb"]
end

desc "Code coverage detail"
task :simplecov do
  ENV["COVERAGE"] = "true"
  Rake::Task["spec"].execute
end

task default: :spec

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

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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
auto_autoloader-0.0.5 Rakefile
auto_autoloader-0.0.4 Rakefile
auto_autoloader-0.0.3 Rakefile
auto_autoloader-0.0.2 Rakefile
auto_autoloader-0.0.1 Rakefile
auto_autoloader-0.0.0 Rakefile