Sha256: ccfc8a23e0e5ba3a7450e93df985121cc6a0bfa74e122ceed7d12ce4f287de56
Contents?: true
Size: 1.19 KB
Versions: 2
Compression:
Stored size: 1.19 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 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
myna_bird-0.2.12 | Rakefile |
myna_bird-0.2.11 | Rakefile |