-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathactive_analytics.gemspec
22 lines (18 loc) · 1.02 KB
/
active_analytics.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require_relative "lib/active_analytics/version"
Gem::Specification.new do |spec|
spec.name = "active_analytics"
spec.version = ActiveAnalytics::VERSION
spec.authors = ["Alexis Bernard", "Antoine Marguerie"]
spec.email = ["[email protected]", "[email protected]"]
spec.homepage = "https://github.com/BaseSecrete/active_analytics"
spec.summary = "First-party, privacy-focused traffic analytics for Ruby on Rails applications"
spec.description = "NO cookies, NO JavaScript, NO third parties and NO bullshit."
spec.license = "MIT"
spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/BaseSecrete/active_analytics"
spec.metadata["changelog_uri"] = "https://github.com/BaseSecrete/active_analytics"
spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
spec.add_dependency "rails", ">= 5.2.0"
spec.add_dependency "browser", ">= 1.0.0"
end