loggable_activity 0.2.1c → 0.2.1

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
2
  SHA256:
3
- metadata.gz: aedc39df0c92354d989c8991ca33392b22b17712b09d029b47e4c3f416a9fea6
4
- data.tar.gz: 608619353a94d6488bcc5ab6b1b5e8355598051a8aace932ca7336ef41b04c0e
3
+ metadata.gz: c639f2566d6a3dd820a7657b9b8bb398e5a861347ae1bc7d7474724c6c344b4c
4
+ data.tar.gz: 8551b4aab8f630be997b6af7b8372d7efd84221824bbacb25bb6c444f6c83978
5
5
  SHA512:
6
- metadata.gz: 15de688e047ce77333ce9b0b6cdbbad648c69dc2022f0d42913c0058c9ad0ddcd9397f8b6e143a1201cde0f0f6905e2a729f26d802233009bf6fb21814b78740
7
- data.tar.gz: 6d8cb25b837e1fdfaa3ac4cf9e27ab875c681595f0c1e8f3131e8f69d8e35849f06a050ca62235d7214f2a67f139642ba5143e4d4f40d037c5dfee959b5289eb
6
+ metadata.gz: 03422fe2e2d154f894da7a0eab5fac78f1048b6e6d3d4addbf1fa0bd66d9a674913ca666a4a4e743cbaf95ff5edbfb8711641596330b370d5d29d3e0922f4af6
7
+ data.tar.gz: '08de4b66e4aba0d210be64f83eb78b51fcb6c351d3340e9f1dfba334194d5c6a705daeefe6f66aae8a7cc8409a94b1ba4ec33d222a957e549b0811629f6ebfcb'
data/CHANGELOG.md CHANGED
@@ -1,7 +1,4 @@
1
1
 
2
- ## [0.2.1b] - 2024-07-03
3
- - Repo has moved to organization on github
4
-
5
2
  ## [0.2.0] - 2024-07-03
6
3
  - Keys kan be kept until LoggableActivity::Sanitizer.run is called
7
4
 
data/GETTING-STARTED.md CHANGED
@@ -7,7 +7,7 @@ This document should you getting started with `LoggableActivity`
7
7
 
8
8
  ## Demo Application
9
9
  You can download a demo application from<br/>
10
- [https://github.com/LoggableActivity/LoggableActivityDemoApp](https://github.com/LoggableActivity/LoggableActivityDemoApp)
10
+ [https://github.com/maxgronlund/LoggableActivityDemoApp](https://github.com/maxgronlund/LoggableActivityDemoApp)
11
11
  <br/>
12
12
  You can try a demo here<br/>
13
13
  [https://loggableactivity-efe7b931c886.herokuapp.com/](https://loggableactivity-efe7b931c886.herokuapp.com/)
@@ -114,6 +114,6 @@ Supported relations at the moment is
114
114
 
115
115
  ## For developers and contributors
116
116
  If you can download and play around with a demo app
117
- - 1 Down the demo project from [demo project on github](https://github.com/LoggableActivity/LoggableActivityDemoApp)
117
+ - 1 Down the demo project from [demo project on github](https://github.com/maxgronlund/LoggableActivityDemoApp)
118
118
  - 2 Update the Gemfile in the demo project so it points to your localhost.
119
119
  - 3 you can now build and test you version of the gem `$ gem build loggable_activity.gemspec`
data/README.md CHANGED
@@ -30,7 +30,7 @@ Beside the journal in the db, an activity log is kept so it is possible to track
30
30
  At some point in time the patients data from the DB and the activity log has to be removed according to GDPR.<br/>
31
31
 
32
32
  ### Getting started
33
- please read the [GETTING-STARTED.md](https://github.com/LoggableActivity/LoggableActivity/blob/main/GETTING-STARTED.md) guide
33
+ please read the [GETTING-STARTED.md](https://github.com/maxgronlund/LoggableActivity/blob/main/GETTING-STARTED.md) guide
34
34
 
35
35
  ### Contribute
36
36
  👉 Join the Slack channel here: [LoggableActivity Slack Workspace](https://join.slack.com/t/loggableactivity/shared_invite/zt-2a3tvgv37-mGwjHJTrBXBH2srXFRRSXQ)
data/ROADMAP.md CHANGED
@@ -4,7 +4,7 @@ Outline of steps to get the LoggableActivity adapted.
4
4
  ### Demo project
5
5
  Nothing is better than gain som experience by getting som real world tests and experiences.
6
6
  <br/>
7
- Try the [Live Demo]("https://loggableactivity-efe7b931c886.herokuapp.com/") here or download it from [Github]("https://github.com/LoggableActivity/LoggableActivityDemoApp") here
7
+ Try the [Live Demo]("https://loggableactivity-efe7b931c886.herokuapp.com/") here or download it from [Github]("https://github.com/maxgronlund/LoggableActivityDemoApp") here
8
8
 
9
9
 
10
10
  ### Open Source
@@ -80,7 +80,7 @@ module LoggableActivity
80
80
 
81
81
 
82
82
  For more information, please visit:
83
- https://github.com/LoggableActivity/LoggableActivity/blob/main/GETTING-STARTED.md
83
+ https://github.com/maxgronlund/LoggableActivity/blob/main/GETTING-STARTED.md
84
84
 
85
85
  ------------------------------------------------
86
86
  MESSAGE
@@ -2,6 +2,7 @@
2
2
 
3
3
  require 'json-schema'
4
4
  require 'json'
5
+ require 'awesome_print'
5
6
 
6
7
  module LoggableActivity
7
8
  # This class is used to load the configuration file located at config/loggable_activity.yml
@@ -3,5 +3,5 @@
3
3
  # Version of the gem
4
4
  module LoggableActivity
5
5
  # Version
6
- VERSION = '0.2.1c'
6
+ VERSION = '0.2.1'
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: loggable_activity
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1c
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - "Max \nGroenlund"
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-06-28 00:00:00.000000000 Z
11
+ date: 2024-06-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -304,9 +304,9 @@ licenses:
304
304
  - MIT
305
305
  metadata:
306
306
  homepage_uri: https://loggableactivity-efe7b931c886.herokuapp.com/
307
- source_code_uri: https://github.com/LoggableActivity/LoggableActivity
308
- changelog_uri: https://github.com/LoggableActivity/LoggableActivity/CHANGELOG.md
309
- documentation_uri: https://LoggableActivity.github.io/LoggableActivity/
307
+ source_code_uri: https://github.com/maxgronlund/LoggableActivity
308
+ changelog_uri: https://github.com/maxgronlund/LoggableActivity/CHANGELOG.md
309
+ documentation_uri: https://maxgronlund.github.io/LoggableActivity/
310
310
  rubygems_mfa_required: 'true'
311
311
  post_install_message:
312
312
  rdoc_options: []