Sha256: 0950ae4c3b29cd8f362fb5044c65f9755461a1ae100b68f52b868cfee3f15dc4

Contents?: true

Size: 1.11 KB

Versions: 19

Compression:

Stored size: 1.11 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 = "flowdock"
  gem.homepage = "http://github.com/flowdock/flowdock-api"
  gem.license = "MIT"
  gem.summary = %Q{Ruby Gem for using Flowdock's API}
  gem.email = "team@flowdock.com"
  gem.authors = ["Antti Pitkänen"]
  # 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

task :default => :spec

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

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

Version data entries

19 entries across 19 versions & 2 rubygems

Version Path
flowdock-0.7.1 Rakefile
flowdock-0.7.0 Rakefile
flowdock-0.6.0 Rakefile
asana2flowdock-1.0.0 vendor/bundle/ruby/1.9.1/gems/flowdock-0.5.0/Rakefile
flowdock-0.5.0 Rakefile
flowdock-0.4.0 Rakefile
flowdock-0.3.1 Rakefile
flowdock-0.3.0 Rakefile
flowdock-0.2.3 Rakefile
flowdock-0.2.2 Rakefile
flowdock-0.2.1 Rakefile
flowdock-0.2.0 Rakefile
flowdock-0.1.11 Rakefile
flowdock-0.1.10 Rakefile
flowdock-0.1.9 Rakefile
flowdock-0.1.8 Rakefile
flowdock-0.1.7 Rakefile
flowdock-0.1.6 Rakefile
flowdock-0.1.5 Rakefile