Sha256: f85a8db5ba4ef3aef9c9149ee0d0337123f38d301ab9a3bc2a7e78b166b8488a

Contents?: true

Size: 1.24 KB

Versions: 4

Compression:

Stored size: 1.24 KB

Contents

require 'rubygems'
require 'rake'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "myna_bird"
    gem.summary = %Q{Transform email addresses into account names for your app}
    gem.description = %Q{Given an email address, MynaBird generates a name suitable for use in a host name}
    gem.email = "brendan@wistia.com"
    gem.homepage = "http://github.com/wistia/myna_bird"
    gem.authors = ["Brendan Schwartz"]
    gem.add_development_dependency "rspec", ">= 1.2.9"
    # 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 '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

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

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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
myna_bird-0.2.9 Rakefile
myna_bird-0.2.8 Rakefile
myna_bird-0.2.7 Rakefile
myna_bird-0.2.6 Rakefile