forked from matomo-org/piwik-ruby-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautometal-piwik.gemspec
26 lines (24 loc) · 1.03 KB
/
autometal-piwik.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
26
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'piwik/version'
Gem::Specification.new do |s|
s.name = "autometal-piwik"
s.version = Piwik::VERSION
s.authors = ["Achilles Charmpilas"]
s.email = ["[email protected]"]
s.description = %q{A complete Ruby client for the Piwik API}
s.summary = %q{A complete Ruby client for the Piwik API}
s.homepage = "http://humbuckercode.co.uk/licks/gems/piwik/"
s.license = 'MIT'
s.files = `git ls-files`.split($/)
s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ["lib"]
s.add_dependency('xml-simple')
s.add_dependency('rest-client')
s.add_dependency('activesupport', '>= 3.0', '< 8')
s.add_development_dependency('rspec', '< 4.0')
s.add_development_dependency('rspec-mocks', '< 4.0')
s.add_development_dependency('rspec-its', '< 4.0')
end