forked from halfdan/piwik-ruby-tracking
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpiwik_analytics.gemspec
More file actions
26 lines (21 loc) · 1002 Bytes
/
piwik_analytics.gemspec
File metadata and controls
26 lines (21 loc) · 1002 Bytes
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
spec = Gem::Specification.new do |s|
s.name = 'piwik_analytics'
s.version = '1.0.1'
s.date = Time.now.strftime "%Y-%m-%d"
s.author = 'Fabian Becker'
s.email = 'halfdan@xnorfz.de'
s.homepage = 'https://github.com/halfdan/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'
s.add_development_dependency "rspec", "~> 2.12.0"
end