chronicle-safari 0.1.1 → 0.1.2

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: 00a6714d6637bd3d9566e3c55bd88c1b6adaa28f24ad90d532fbd96148e98046
4
- data.tar.gz: 54af96d1596c5a620580a8f3545a44f227ebd7ba034ce17188f9c6f151fa2ab5
3
+ metadata.gz: effb3cd8dc40d79a0eb887af0a0d7229b517270bb79aeca14ed37b4ab709aa25
4
+ data.tar.gz: 506fdc818e8b91eed851bc788bb5b5f8b104d31525267e80255b6715c477bb17
5
5
  SHA512:
6
- metadata.gz: 456c6bde7c176b653df3cbdaac209274b3face8eae1fe86b82b54386d196155584e5ff3aa9a9320acf9e92d7fbbc70ce28862f31fc707409d2201fae73b96991
7
- data.tar.gz: 115670f23e5da5c44dfaabea0e6cb100e54d0acb47cb00d61eee522b94a89c055e634c36e3f472c148caff49e7fcb6c54ead5b809940b38c87c54d7e15ec0120
6
+ metadata.gz: a03d4a16c67892ae1d75b737da1023930403483de8d4a1b8d7191abf947cf782b160676a719cd494127eceaa948dbe4a1719d4e637416445a68cd8deab543780
7
+ data.tar.gz: 5e9a92d52f91ae816d29a33bf96d8e8f1bc2a90b592bc91accfb55537341c8a8602f05666fdb5afd2aa84b83d646f4e0e546afdaed21e2873f89a727ae529a4a
data/README.md CHANGED
@@ -1,10 +1,11 @@
1
1
  # Chronicle::Safari
2
+ [![Gem Version](https://badge.fury.io/rb/chronicle-safari.svg)](https://badge.fury.io/rb/chronicle-safari)
2
3
 
3
- Safri plugin for [chronicle-etl](https://github.com/chronicle-app/chronicle-etl)
4
+ Extract your Safari browser history with this plugin for [chronicle-etl](https://github.com/chronicle-app/chronicle-etl)
4
5
 
5
6
  ## Available Connectors
6
7
  ### Extractors
7
- - `safari` - Extractor for history
8
+ - `safari` - Extractor for browser history
8
9
 
9
10
  ### Transformers
10
11
  - `safari` - Transforms history into Chronicle Schema
@@ -12,8 +13,13 @@ Safri plugin for [chronicle-etl](https://github.com/chronicle-app/chronicle-etl)
12
13
  ## Usage
13
14
 
14
15
  ```sh
15
- gem install chronicle-etl
16
- chronicle-etl connectors:install safari
16
+ # Install chronicle-etl and then this plugin
17
+ $ gem install chronicle-etl
18
+ $ chronicle-etl connectors:install safari
17
19
 
18
- chronicle-etl --extractor safari --since 2022-02-07
20
+ # Extract all history
21
+ $ chronicle-etl --extractor safari
22
+
23
+ # Get last week of history and transform it into Chronicle Schema
24
+ $ chronicle-etl --extractor safari --since 1w --transformer safari
19
25
  ```
@@ -46,7 +46,7 @@ module Chronicle
46
46
 
47
47
  def build_actor
48
48
  record = ::Chronicle::ETL::Models::Entity.new({
49
- represent: 'identity',
49
+ represents: 'identity',
50
50
  provider: 'icloud',
51
51
  provider_id: @extraction.meta[:icloud_account][:dsid],
52
52
  title: @extraction.meta[:icloud_account][:display_name],
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Chronicle
4
4
  module Safari
5
- VERSION = "0.1.1"
5
+ VERSION = "0.1.2"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chronicle-safari
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Louis
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-03-25 00:00:00.000000000 Z
11
+ date: 2022-09-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: chronicle-etl