-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathuptrends.gemspec
25 lines (21 loc) · 1.17 KB
/
uptrends.gemspec
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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'uptrends/version'
Gem::Specification.new do |spec|
spec.name = "uptrends"
spec.version = Uptrends::VERSION
spec.authors = ["Jason Barnett"]
spec.email = ["[email protected]"]
spec.summary = %q{Ruby wrapper around the Uptrends API, http://www.uptrends.com/}
spec.description = %Q{This is a ruby wrapper around the Uptrends API. Uptrends is a monitoring service that let's you monitor Web pages, Web services, Mail servers, Database servers, DNS, SSL certificates, FTP and more.\n\nNOTE: This is a 3rd party gem and not an official product from Uptrends.}
spec.homepage = "https://github.com/jasonwbarnett/uptrends-gem"
spec.license = "MIT"
spec.required_ruby_version = '>= 1.9.3'
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_dependency "httparty", "~> 0.13"
spec.add_dependency "activesupport", "~> 4.1.4"
end