Sha256: 1adf28634c1e61c08b7ff7f7f32ec50bfdffae39fbff8e33d7a7b51b802d8047
Contents?: true
Size: 1.55 KB
Versions: 7
Compression:
Stored size: 1.55 KB
Contents
require 'rake' begin require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = "chatterbox" gem.summary = %Q{Notifications and messages} gem.description = "Send notifications and messages. However you want." gem.email = "rsanheim@gmail.com" gem.homepage = "http://github.com/rsanheim/chatterbox" gem.authors = ["Rob Sanheim"] gem.add_development_dependency "mocha" gem.add_development_dependency "actionpack" gem.add_development_dependency "micronaut" gem.add_development_dependency "micronaut-rails" end Jeweler::GemcutterTasks.new rescue LoadError puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler" end require 'micronaut/rake_task' Micronaut::RakeTask.new(:examples) do |examples| examples.pattern = 'examples/**/*_example.rb' examples.ruby_opts << '-Ilib -Iexamples' end Micronaut::RakeTask.new(:rcov) do |examples| examples.pattern = 'examples/**/*_example.rb' examples.rcov_opts = %[-Ilib -Iexamples --exclude "examples/*,gems/*,db/*,/Library/Ruby/*,config/*" --text-summary --sort coverage] examples.rcov = true end task :default => :examples begin %w{sdoc sdoc-helpers rdiscount}.each { |name| gem name } require 'sdoc_helpers' rescue LoadError => ex puts "sdoc support not enabled:" puts ex.inspect end require 'rake/rdoctask' Rake::RDocTask.new do |rdoc| version = File.exist?('VERSION') ? File.read('VERSION') : '' rdoc.rdoc_dir = 'rdoc' rdoc.title = "chatterbox #{version}" rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb') end
Version data entries
7 entries across 7 versions & 1 rubygems
Version | Path |
---|---|
chatterbox-0.6.2 | Rakefile |
chatterbox-0.6.1 | Rakefile |
chatterbox-0.6.0 | Rakefile |
chatterbox-0.5.4 | Rakefile |
chatterbox-0.5.3 | Rakefile |
chatterbox-0.5.1 | Rakefile |
chatterbox-0.5.0 | Rakefile |