darjeelink 0.11.8 → 0.11.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5f077cd42297ac6611f454687f572c0ba3b2b5b0e6adbaedbbcae1bd905b16c8
4
- data.tar.gz: 5b7879fc14f7e65438b3196a20f05d3a052f43aa3959617f8cb0276c59a7aaf1
3
+ metadata.gz: 755182c208a3023f2f855c3edee1dbee2452577c26514c304e042e88764cdc81
4
+ data.tar.gz: e13bd71ccc6ed555314275942aa2e142fa31fe7641789903cac9dc8ddefb7a6a
5
5
  SHA512:
6
- metadata.gz: 5a69637a14edf0be055e45e615117c794dfc5bb6d86661d1e92105d56dc874a12542a667fc0f27a5edc983c0e26662f5411cb01c99b82278356f1b91011e9319
7
- data.tar.gz: 46d895118941de94c2b2134d809003d7c63c3acbb6fb0e581ad4c23b27c818f3c70d9cf1ee77ad00407a3be83111915429c735630ba597161c7290ed99ac6f84
6
+ metadata.gz: 7bc60d1375991efafa0ebe224a34f6b2678ddb83dfbc22ead8b512f241bc6ce2b0273e81227036556042c7e35cacc1909db24d0d1a253b2aeccc4960c6339004
7
+ data.tar.gz: 768603531afa36e6cbcdb63302a182cc35b2a9e566cff62595ea379e98a21a3d550dca73fa12696934fe0f677d2f2cc904dbce03e3f4568ff175db19dc2fab75
data/README.md CHANGED
@@ -72,6 +72,20 @@ Run `cp .env.sample spec/dummy/.env.test`
72
72
 
73
73
  Change the database url to be different to the development one i.e. `postgres://darjeelink_dbuser:password@localhost/darjeelink-test`
74
74
 
75
+ ## Releasing
76
+ Darjeelink follows [Semantic Versioning](https://semver.org)
77
+
78
+ Once all necessary changes have made it in to master and you are ready to do a release you need to do these steps.
79
+
80
+ Note that if you are running in a vagrant VM, most of these steps can be done from within the VM.
81
+
82
+ - Update `lib/darjeelink/version.rb` to the new version
83
+ - Run `bundle install` to pick up the change in Gemfile.lock
84
+ - Commit the changes to `lib/darjeelink/version.rb` and `Gemfile.lock`, and push them to GitHub
85
+ - Go to `https://github.com/38dgs/darjeelink/releases` and create a release tag in GitHub
86
+ - Run `gem build darjeelink.gemspec` this will output a file `darjeelink-X.X.X.gem` the version should match what version.rb and github.
87
+ - Run `gem push darjeelink-X.X.X.gem`
88
+
75
89
  ## GDPR
76
90
  No personally identifiable data is stored about the public by this gem.
77
91
  It does not store information on individual clicks, only a counter of how many times a link has been clicked.
@@ -21,7 +21,8 @@ Darjeelink.configure do |config|
21
21
  'youtube': 'Youtube',
22
22
  'google-search': 'Google search',
23
23
  'google-display': 'Google display',
24
- 'snapchat-advert': 'Snapchat Advert'
24
+ 'snapchat-advert': 'Snapchat Advert',
25
+ 'digitalorganiser-share': 'Digital Organiser'
25
26
  }
26
27
 
27
28
  config.auth_domain = ENV['AUTH_DOMAIN']
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Darjeelink
4
- VERSION = '0.11.8'
4
+ VERSION = '0.11.9'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: darjeelink
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.8
4
+ version: 0.11.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Hulme
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-06-17 00:00:00.000000000 Z
11
+ date: 2020-06-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: omniauth-google-oauth2