Sha256: ff12ce2952c3e7bf0c18e5f8901e797a0b520533aba5c05b0b0fedbe607da626

Contents?: true

Size: 1.45 KB

Versions: 16

Compression:

Stored size: 1.45 KB

Contents

require 'rubygems'
require 'rake'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "di-simple_auth"
    gem.summary = %Q{ one-line summary of your gem}
    gem.description = %Q{ longer description of your gem}
    gem.email = "dieinzige@me.com"
    gem.homepage = "http://github.com/Dieinzige/simple_auth"
    gem.authors = ["Dieinzige"]
    gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
    gem.add_dependency "bcrypt-ruby"
    # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
  end
  Jeweler::GemcutterTasks.new
rescue LoadError
  puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
end

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

begin
  require 'rcov/rcovtask'
  Rcov::RcovTask.new do |test|
    test.libs << 'test'
    test.pattern = 'test/**/test_*.rb'
    test.verbose = true
  end
rescue LoadError
  task :rcov do
    abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
  end
end

task :test => :check_dependencies

task :default => :test

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

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

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
di-simple_auth-0.3.5 Rakefile
di-simple_auth-0.3.4 Rakefile
di-simple_auth-0.3.3 Rakefile
di-simple_auth-0.3.2 Rakefile
di-simple_auth-0.3.1 Rakefile
di-simple_auth-0.3.0 Rakefile
di-simple_auth-0.2.9 Rakefile
di-simple_auth-0.2.8 Rakefile
di-simple_auth-0.2.7 Rakefile
di-simple_auth-0.2.6 Rakefile
di-simple_auth-0.2.5 Rakefile
di-simple_auth-0.2.4 Rakefile
di-simple_auth-0.2.2 Rakefile
di-simple_auth-0.2.1 Rakefile
di-simple_auth-0.2.0 Rakefile
di-simple_auth-0.1.0 Rakefile