Sha256: d440692dfd1cd942f12646c5baac412673f592064719525b386094d6b14271ae

Contents?: true

Size: 1.09 KB

Versions: 4

Compression:

Stored size: 1.09 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'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "happy_fun_time_bot"
  gem.homepage = "http://github.com/gammons/happy_fun_time_bot"
  gem.license = "MIT"
  gem.summary = %Q{Simple XMPP bot framework}
  gem.description = %Q{Easily create bots that can respond to anything!}
  gem.email = "grant@pipelinedealsco.com"
  gem.authors = ["Grant Ammons"]
  # 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

require 'yard'
YARD::Rake::YardocTask.new

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
happy_fun_time_bot-0.2.0 Rakefile
happy_fun_time_bot-0.1.2 Rakefile
happy_fun_time_bot-0.1.1 Rakefile
happy_fun_time_bot-0.1.0 Rakefile