forked from zzeroo/piwik_analytics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpiwik_analytics.gemspec
More file actions
24 lines (20 loc) · 937 Bytes
/
piwik_analytics.gemspec
File metadata and controls
24 lines (20 loc) · 937 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
spec = Gem::Specification.new do |s|
s.name = 'piwik_analytics'
s.version = '1.0.5'
s.date = Time.now.strftime "%Y-%m-%d"
s.author = 'zzeroo'
s.email = 'co@zzeroo.com'
s.homepage = 'https://github.com/zzeroo/piwik_analytics/'
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'
end