forked from rgnets/ruby-mosquitto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mosquitto.gemspec
23 lines (21 loc) · 934 Bytes
/
mosquitto.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# encoding: utf-8
require File.expand_path('../lib/mosquitto/version', __FILE__)
Gem::Specification.new do |s|
s.name = "mosquitto"
s.version = Mosquitto::VERSION
s.summary = "mosquitto - a high perf MQTT 3.1 client"
s.description = "Ruby binding against libmosquitto (http://mosquitto.org/) - a high performance MQTT protocol (http://mqtt.org) client"
s.authors = ["Lourens Naudé", "Bear Metal OÜ"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "http://github.com/bear-metal/mosquitto"
s.date = Time.now.utc.strftime('%Y-%m-%d')
s.platform = Gem::Platform::RUBY
s.extensions = "ext/mosquitto/extconf.rb"
s.has_rdoc = true
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files test`.split("\n")
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.add_development_dependency('rake-compiler', '~> 0.9.2')
s.add_development_dependency('yard')
end