snowplow-tracker 0.6.1 → 0.7.0.pre.alpha.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 7791ce01bb9fb13236a7640831d408c1e2a79b4a
4
- data.tar.gz: 214c62d81fadb5a24aab0672f9e8ff2c8518fbb4
2
+ SHA256:
3
+ metadata.gz: debc2ab18310d2efcd5e57dc42e52a259876c2588b7e735183c07bba16c9ab3a
4
+ data.tar.gz: 11a596a2e96673312deff3a8ecdc664792e71aac503af33c826583c2a14f8edc
5
5
  SHA512:
6
- metadata.gz: 31972b3c6ab6eafcb3e52e55a601ddbd32f8ec3e30ccbf9c906668d91f6b1d552baedbcc3a9d67b087381bc770d2d9c6edb04d7e0fcf1363f18e32fa4d23fe11
7
- data.tar.gz: d9834146473868f531b9dcf6f07f7ffe3735034c55b392825da3c47e0874569c561dd99885761343f312cc40726449158c5061432e1282dd6f7a55fd85301365
6
+ metadata.gz: d95205012540b049b857b97ecfb2ff055ee7f786c3c83c375d89f6743bb568cb3577185196a90ed6e17dab788dbe63c6fe2d226df28d2a6acddd4ae2f79e3938
7
+ data.tar.gz: c09b603c6e633246b7e75e3b44dda70913b5476582cdab2bee87556a63780e8c1c1363e02342057d54c129d63632d9a921c62f6e26f880a237d87e77f06192ae
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
- # Ruby Analytics for Snowplow
2
- [![Gem Version](https://badge.fury.io/rb/snowplow-tracker.svg)](http://badge.fury.io/rb/snowplow-tracker)
1
+ # Ruby Analytics for Snowplow
2
+
3
+ [![early-release]][tracker-classification]
4
+ [![Gem Version](https://badge.fury.io/rb/snowplow-tracker.svg)](https://badge.fury.io/rb/snowplow-tracker)
3
5
  [![Build Status](https://travis-ci.org/snowplow/snowplow-ruby-tracker.png?branch=master)](https://travis-ci.org/snowplow/snowplow-ruby-tracker)
4
6
  [![Code Climate](https://codeclimate.com/github/snowplow/snowplow-ruby-tracker.png)](https://codeclimate.com/github/snowplow/snowplow-ruby-tracker)
5
7
  [![Coverage Status](https://coveralls.io/repos/snowplow/snowplow-ruby-tracker/badge.png)](https://coveralls.io/r/snowplow/snowplow-ruby-tracker)
@@ -7,42 +9,44 @@
7
9
 
8
10
  ## Overview
9
11
 
10
- Add analytics to your Ruby and Rails apps and gems with the **[Snowplow] [snowplow]** event tracker for **[Ruby] [ruby]**.
12
+ Add analytics to your Ruby and Rails apps and gems with the **[Snowplow][snowplow]** event tracker for **[Ruby][ruby]**.
11
13
 
12
- With this tracker you can collect event data from your **[Ruby] [ruby]** applications, **[Ruby on Rails] [rails]** web applications and **[Ruby gems] [rubygems]**.
14
+ With this tracker you can collect event data from your **[Ruby][ruby]** applications, **[Ruby on Rails][rails]** web applications and **[Ruby gems][rubygems]**.
13
15
 
14
- ## Quickstart
16
+ ## Maintainer Quickstart
15
17
 
16
- Assuming git, **[Vagrant] [vagrant-install]** and **[VirtualBox] [virtualbox-install]** installed:
18
+ Clone this repo and navigate into the cloned folder. To run the tests locally, you will need [Docker][docker] installed.
17
19
 
18
20
  ```bash
19
- host$ git clone https://github.com/snowplow/snowplow-ruby-tracker.git
20
- host$ cd snowplow-ruby-tracker
21
- host$ vagrant up && vagrant ssh
22
- guest$ cd /vagrant
23
- guest$ gem install bundler
24
- guest$ bundle install
25
- guest$ rspec
21
+ docker build . -t ruby-tracker
22
+ docker run -v "$(pwd)":"/code" ruby-tracker
26
23
  ```
27
24
 
28
- ## Publishing
25
+ The `-v` flag for `docker run` creates a bind mount for the project directory. This means that changes to the files will be automatically applied within the Docker image. However, if you modify the `Gemfile` or `snowplow-tracker.gemspec` files, the image must be rebuilt.
26
+
27
+ Alternatively, test directly by installing Ruby 2.6+ and [Bundler][bundler]. Then run:
29
28
 
30
- ```bash
31
- host$ vagrant push
32
29
  ```
30
+ bundle install
31
+ rspec
32
+ ```
33
+
34
+ ## Contributing
35
+
36
+ Feedback and contributions are welcome - if you have identified a bug, please log an issue on this repo. For all other feedback, discussion or questions please open a thread on our [Discourse forum][discourse].
33
37
 
34
38
  ## Find out more
35
39
 
36
- | Technical Docs | Setup Guide | Roadmap | Contributing |
37
- |---------------------------------|---------------------------|-------------------------|-----------------------------------|
38
- | ![i1] [techdocs-image] | ![i2] [setup-image] | ![i3] [roadmap-image] | ![i4] [contributing-image] |
39
- | **[Technical Docs] [techdocs]** | **[Setup Guide] [setup]** | **[Roadmap] [roadmap]** | **[Contributing] [contributing]** |
40
+ | Technical Docs | Contributing |
41
+ | ------------------------------ | ----------------------------------- |
42
+ | ![i1][techdocs-image] | ![i4][contributing-image] |
43
+ | **[Technical Docs][techdocs]** | **[Contributing](Contributing.md)** |
40
44
 
41
45
  ## Copyright and license
42
46
 
43
47
  The Snowplow Ruby Tracker is copyright 2013-2016 Snowplow Analytics Ltd.
44
48
 
45
- Licensed under the **[Apache License, Version 2.0] [license]** (the "License");
49
+ Licensed under the **[Apache License, Version 2.0][license]** (the "License");
46
50
  you may not use this software except in compliance with the License.
47
51
 
48
52
  Unless required by applicable law or agreed to in writing, software
@@ -51,24 +55,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
51
55
  See the License for the specific language governing permissions and
52
56
  limitations under the License.
53
57
 
54
- [license-image]: http://img.shields.io/badge/license-Apache--2-blue.svg?style=flat
55
- [license]: http://www.apache.org/licenses/LICENSE-2.0
56
-
58
+ [license-image]: https://img.shields.io/badge/license-Apache--2-blue.svg?style=flat
59
+ [license]: https://www.apache.org/licenses/LICENSE-2.0
57
60
  [ruby]: https://www.ruby-lang.org/en/
58
- [rails]: http://rubyonrails.org/
61
+ [rails]: https://rubyonrails.org/
59
62
  [rubygems]: https://rubygems.org/
60
-
61
- [snowplow]: http://snowplowanalytics.com
62
-
63
- [vagrant-install]: http://docs.vagrantup.com/v2/installation/index.html
64
- [virtualbox-install]: https://www.virtualbox.org/wiki/Downloads
65
-
63
+ [docker]: https://www.docker.com/
64
+ [bundler]: https://bundler.io/
65
+ [snowplow]: httpd://snowplowanalytics.com
66
+ [discourse]: https://discourse.snowplowanalytics.com
66
67
  [techdocs-image]: https://d3i6fms1cm1j0i.cloudfront.net/github/images/techdocs.png
67
- [setup-image]: https://d3i6fms1cm1j0i.cloudfront.net/github/images/setup.png
68
- [roadmap-image]: https://d3i6fms1cm1j0i.cloudfront.net/github/images/roadmap.png
69
68
  [contributing-image]: https://d3i6fms1cm1j0i.cloudfront.net/github/images/contributing.png
70
-
71
- [techdocs]: https://github.com/snowplow/snowplow/wiki/Ruby-Tracker
72
- [setup]: https://github.com/snowplow/snowplow/wiki/Ruby-Tracker-Setup
73
- [roadmap]: https://github.com/snowplow/snowplow/wiki/Ruby-Tracker-Roadmap
74
- [contributing]: https://github.com/snowplow/snowplow/wiki/Ruby-Tracker-Contributing
69
+ [techdocs]: https://docs.snowplowanalytics.com/docs/collecting-data/collecting-from-own-applications/ruby-tracker/
70
+ [tracker-classification]: https://docs.snowplowanalytics.com/docs/collecting-data/collecting-from-own-applications/tracker-maintenance-classification/
71
+ [early-release]: https://img.shields.io/static/v1?style=flat&label=Snowplow&message=Early%20Release&color=014477&labelColor=9ba0aa&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAeFBMVEVMaXGXANeYANeXANZbAJmXANeUANSQAM+XANeMAMpaAJhZAJeZANiXANaXANaOAM2WANVnAKWXANZ9ALtmAKVaAJmXANZaAJlXAJZdAJxaAJlZAJdbAJlbAJmQAM+UANKZANhhAJ+EAL+BAL9oAKZnAKVjAKF1ALNBd8J1AAAAKHRSTlMAa1hWXyteBTQJIEwRgUh2JjJon21wcBgNfmc+JlOBQjwezWF2l5dXzkW3/wAAAHpJREFUeNokhQOCA1EAxTL85hi7dXv/E5YPCYBq5DeN4pcqV1XbtW/xTVMIMAZE0cBHEaZhBmIQwCFofeprPUHqjmD/+7peztd62dWQRkvrQayXkn01f/gWp2CrxfjY7rcZ5V7DEMDQgmEozFpZqLUYDsNwOqbnMLwPAJEwCopZxKttAAAAAElFTkSuQmCC
@@ -14,6 +14,6 @@
14
14
  # License:: Apache License Version 2.0
15
15
 
16
16
  module SnowplowTracker
17
- VERSION = '0.6.1'
17
+ VERSION = '0.7.0-alpha.0'
18
18
  TRACKER_VERSION = "rb-#{VERSION}"
19
19
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: snowplow-tracker
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.7.0.pre.alpha.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexander Dean
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-12-26 00:00:00.000000000 Z
12
+ date: 2021-09-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: contracts
@@ -92,12 +92,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
92
92
  version: 2.0.0
93
93
  required_rubygems_version: !ruby/object:Gem::Requirement
94
94
  requirements:
95
- - - ">="
95
+ - - ">"
96
96
  - !ruby/object:Gem::Version
97
- version: '0'
97
+ version: 1.3.1
98
98
  requirements: []
99
- rubyforge_project:
100
- rubygems_version: 2.6.8
99
+ rubygems_version: 3.0.3.1
101
100
  signing_key:
102
101
  specification_version: 4
103
102
  summary: Ruby Analytics for Snowplow