Sha256: fb25a71e82f32f83e18da0843fe528df71a45c3eae48196b5b0df2f86d165b78
Contents?: true
Size: 1.37 KB
Versions: 4
Compression:
Stored size: 1.37 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 = "inbox" gem.homepage = "http://github.com/inboxapp/inbox-ruby" gem.license = "MIT" gem.summary = %Q{Gem for interacting with the Inbox API} gem.description = %Q{Gem for interacting with the Inbox API that allows you to create and publish one-page websites, subscribe to web hooks and receive events when those pages are interacted with. Visit http://www.populr.me/ for more information. } gem.email = "ben@inboxapp.com" gem.authors = ["Ben Gotow"] gem.files.exclude 'example/**/.keep' gem.files.exclude 'example/**/*' end Jeweler::RubygemsDotOrgTasks.new require 'rake/testtask' Rake::TestTask.new(:test) do |test| test.libs << 'lib' << 'test' test.pattern = 'test/**/test_*.rb' test.verbose = true end require 'rdoc/task' Rake::RDocTask.new do |rdoc| version = File.exist?('VERSION') ? File.read('VERSION') : "" rdoc.rdoc_dir = 'rdoc' rdoc.title = "inbox #{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 |
---|---|
inbox-0.4.3 | Rakefile |
inbox-0.4.2 | Rakefile |
inbox-0.4.1 | Rakefile |
inbox-0.4.0 | Rakefile |