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 +4 -4
- data/README.md +14 -0
- data/config/initializers/darjeelink.rb +2 -1
- data/lib/darjeelink/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 755182c208a3023f2f855c3edee1dbee2452577c26514c304e042e88764cdc81
|
|
4
|
+
data.tar.gz: e13bd71ccc6ed555314275942aa2e142fa31fe7641789903cac9dc8ddefb7a6a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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']
|
data/lib/darjeelink/version.rb
CHANGED
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.
|
|
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-
|
|
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
|