1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "messagebus_ruby_api/version"
Gem::Specification.new do |s|
s.name = "messagebus_ruby_api"
s.version = MessagebusApi::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Message Bus dev team"]
s.email = ["messagebus@googlegroups.com"]
s.homepage = ""
s.summary = %q{Send email through the Message Bus service}
s.description = %q{Allows you to use the Message Bus API }
s.rubyforge_project = "messagebus_ruby_api"
s.files = Dir.glob("{lib,spec}/**/*") + %w(README.rdoc Gemfile Rakefile .rvmrc)
s.test_files = Dir.glob("{spec}/**/*")
s.executables = []
s.require_paths = ["lib"]
s.license = 'APACHE2'
s.add_dependency('multipart-post')
end
|