-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
universal_track_manager.gemspec
43 lines (31 loc) · 1.49 KB
/
universal_track_manager.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
42
43
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "version.rb"
Gem::Specification.new do |s|
s.name = 'universal-track-manager'
s.version = UniversalTrackManager::VERSION
s.license = 'MIT'
s.date = Time.now.strftime("%Y-%m-%d")
s.summary = "A gem to track visitors and their UTMs to your website."
s.description = "Simple, plug & play visitor tracking by user agent (browser), IP address, referrer, and UTM parameters."
s.authors = ["Jason Fleetwood-Boldt"]
s.email = '[email protected]'
all_files = `git ls-files -z`.split("\x0")
s.files = all_files.reject{|x| !x.start_with?('lib')}
s.require_paths = ["lib"]
s.homepage = 'https://heliosdev.shop/p/universal-track-manager'
s.metadata = { "source_code_uri" => "https://github.com/jasonfb/universal_track_manager",
"homepage_uri" => 'https://heliosdev.shop/p/universal-track-manager'}
s.add_dependency('rails', '> 5.1')
s.add_development_dependency('simplecov')
s.add_development_dependency('simplecov-rcov')
s.add_development_dependency('appraisal', '> 2.2')
s.post_install_message = <<~MSG
---------------------------------------------
Welcome to Universal Track Manager
to set up, please run
rails generate universal_track_manager:install
For support see https://heliosdev.shop/p/universal-track-manager
---------------------------------------------
MSG
end