This repository has been archived by the owner on Apr 3, 2018. It is now read-only.
forked from snowplow/snowplow-ruby-tracker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
snowplow-tracker.gemspec
41 lines (35 loc) · 1.91 KB
/
snowplow-tracker.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Copyright (c) 2013-2014 Snowplow Analytics Ltd. All rights reserved.
#
# This program is licensed to you under the Apache License Version 2.0,
# and you may not use this file except in compliance with the Apache License Version 2.0.
# You may obtain a copy of the Apache License Version 2.0 at http://www.apache.org/licenses/LICENSE-2.0.
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the Apache License Version 2.0 is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
# Author:: Alex Dean, Fred Blundun (mailto:[email protected])
# Copyright:: Copyright (c) 2013-2014 Snowplow Analytics Ltd
# License:: Apache License Version 2.0
#
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'snowplow-tracker/version'
Gem::Specification.new do |s|
s.name = 'snowplow-tracker'
s.version = SnowplowTracker::VERSION
s.date = File.mtime('./lib/snowplow-tracker/version.rb').strftime('%Y-%m-%d')
s.homepage = 'http://github.com/snowplow/snowplow-ruby-tracker'
s.license = 'Apache License 2.0'
s.summary = "Ruby Analytics for Snowplow"
s.description = "With this tracker you can collect event data from your Ruby applications, Ruby on Rails web applications and Ruby gems."
s.authors = ["Alexander Dean", "Fred Blundun"]
s.email = '[email protected]'
s.files = %w(LICENSE-2.0.txt README.md) + Dir.glob('lib/**/*.rb')
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>= 2.0.0'
s.add_runtime_dependency "contracts", "~> 0.7", "<= 0.11"
s.add_development_dependency "rspec", "~> 2.14.1"
s.add_development_dependency "webmock", "~> 1.17.4"
end