-
Notifications
You must be signed in to change notification settings - Fork 0
/
source_track.gemspec
22 lines (19 loc) · 977 Bytes
/
source_track.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/source_track/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Bryan Rehbein"]
gem.email = ["[email protected]"]
gem.description = %q{Gem to help understand a user's interaction with your site
and the influence of various referrals, promos, campaigns, etc.}
gem.summary = %q{Track the influence that your marketing campaigns and referrals
have on your users.}
gem.homepage = "https://github.com/redbeard0x0a/source_track"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "source_track"
gem.require_paths = ["lib"]
gem.version = SourceTrack::VERSION
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec'
end