-
Notifications
You must be signed in to change notification settings - Fork 33
/
piwik_analytics.gemspec
26 lines (22 loc) · 1019 Bytes
/
piwik_analytics.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
spec = Gem::Specification.new do |s|
s.name = 'piwik_analytics'
s.version = '2.0.0'
s.date = Time.now.strftime "%Y-%m-%d"
s.author = 'Fabian Becker'
s.email = 'halfdan@xnorfz.de'
s.homepage = 'https://github.com/halfdan/piwik-ruby-tracking/'
s.summary = "[Rails] Easily include Piwik tracking in your Rails application."
s.description = <<-DESC
The piwik_analytics gem provides an easy way to include Piwik into your application.
By default it will output the synchronous piwik tracking code for every page
(given that it is configured correctly)
DESC
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ["lib"]
s.add_runtime_dependency 'rails', '>= 3.0.0'
s.add_dependency 'actionpack'
s.add_dependency 'activesupport'
s.add_development_dependency "rspec", "~> 3.5.0"
s.add_development_dependency "rake"
end