autometal-piwik 0.6.1 → 0.6.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/LICENSE +5 -2
  2. data/README.md +15 -14
  3. data/VERSION +1 -1
  4. data/autometal-piwik.gemspec +1 -1
  5. metadata +3 -3
data/LICENSE CHANGED
@@ -1,4 +1,7 @@
1
- No-Copyright (c)
1
+ Copyright © 2010-2013 Achillefs Charmpilas, Humbucker Ltd
2
2
 
3
- You have all the Copyright. This code is yours.
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ‘Software’), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
4
 
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md CHANGED
@@ -49,40 +49,41 @@ Configuring with initializer config/initializers/simple-piwik.rb :
49
49
  gem install simple-piwik
50
50
 
51
51
  ## CHANGELOG:
52
- * 0.6.1
52
+ * 0.6.2
53
53
  New methods (pulled from [yehezkielbs' fork](https://github.com/Achillefs/autometal-piwik/pull/6))
54
54
  * `Site#bounce_count`
55
55
  * `Site#sum_visits_length`
56
56
  * `Site#website_referrers`
57
+
58
+ Plus a couple of fixes by chaddjohnson
57
59
  * 0.6.0
58
60
  Merged a few updates from [Mihael's fork](https://github.com/Achillefs/autometal-piwik/pull/5)
59
61
  Gem now works with Rails 3.x, and the credentials specification strategy changed slightly
62
+
60
63
  * 0.4.2
61
64
  Final fix for inconsistent API outputs caused by Rails using its own version of XmlSimple.
65
+
62
66
  * 0.4.1
63
67
  Quick fixed api result parsing in site creation. The API's responses are inconsistent, but I am not sure why.
68
+
64
69
  * 0.4.0
65
70
  Added Piwik::Trackable controller mixing, pretty much swiped off of halfdan's piwik analytics project (https://github.com/halfdan/piwik_analytics/). The version included in this plugin is not suitable for application tracking, and is instead geared towards tracking multiple websites stored as ActiveRecord models
71
+
66
72
  * 0.3.0
67
73
  UsersManager CRUD implementation, with tests
74
+
68
75
  * 0.2.3
69
76
  Started adding some tests
77
+
70
78
  * 0.2.0
71
79
  Reworked plugin to also look for a rails config file called piwik.yml, and not just the .piwik user prefs file.
80
+
72
81
  * 0.0.2 2008-07-22 (riopro)
73
- * Added specs for existing API methods
74
- * Created RubyForge project at http://rubyforge.org/projects/piwik/
82
+ Added specs for existing API methods
83
+ Created RubyForge project at http://rubyforge.org/projects/piwik/
84
+
75
85
  * 0.0.1 2008-07-21 (riopro)
76
- * major enhancement:
77
- * Initial release
86
+ Initial release
78
87
 
79
88
  ## LICENSE:
80
- (The MIT License)
81
-
82
- Copyright © 2010-2013 Achillefs Charmpilas, Humbucker Ltd
83
-
84
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ‘Software’), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
85
-
86
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
87
-
88
- THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
89
+ The MIT License
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.6.1
1
+ 0.6.2
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{autometal-piwik}
8
- s.version = "0.6.1"
8
+ s.version = "0.6.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Achillefs Charmpilas", "mihael"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: autometal-piwik
3
3
  version: !ruby/object:Gem::Version
4
- hash: 5
4
+ hash: 3
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 6
9
- - 1
10
- version: 0.6.1
9
+ - 2
10
+ version: 0.6.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Achillefs Charmpilas