Sha256: a368ad5a57d7a8b863fac0d9b61bc2346830cdf8fda740495d24b0a006c6556f

Contents?: true

Size: 1.5 KB

Versions: 18

Compression:

Stored size: 1.5 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'
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), 'lib'))
require 'trocla'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "trocla"
  gem.homepage = "https://tech.immerda.ch/2011/12/trocla-get-hashed-passwords-out-of-puppet-manifests/"
  gem.license = "GPLv3"
  gem.summary = "Trocla a simple password generator and storage" 
  gem.description = "Trocla helps you to generate random passwords and to store them in various formats (plain, MD5, bcrypt) for later retrival."
  gem.email = "mh+trocla@immerda.ch"
  gem.authors = ["mh"]
  gem.version = Trocla::VERSION::STRING
  # 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

RSpec::Core::RakeTask.new(:rcov) do |spec|
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rcov = true
end

task :default => :spec

gem 'rdoc'
require 'rdoc/task'
RDoc::Task.new do |rdoc|
  version = Trocla::VERSION::STRING
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "trocla #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

18 entries across 18 versions & 2 rubygems

Version Path
trocla-0.5.1 Rakefile
trocla-0.5.0 Rakefile
trocla-0.4.0 Rakefile
trocla-ruby2-0.4.0 Rakefile
trocla-0.3.0 Rakefile
trocla-0.2.3 Rakefile
trocla-0.2.2 Rakefile
trocla-0.2.1 Rakefile
trocla-0.2.0 Rakefile
trocla-0.1.2 Rakefile
trocla-0.1.1 Rakefile
trocla-0.1.0 Rakefile
trocla-0.0.12 Rakefile
trocla-0.0.11 Rakefile
trocla-0.0.10 Rakefile
trocla-0.0.9 Rakefile
trocla-0.0.8 Rakefile
trocla-0.0.7 Rakefile