joplin 0.5.0 → 0.5.1

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: 7dfac990f629dd9162bf5847a84987b5a41d08ca60d6cd2c4f262d1e47437bfe
4
- data.tar.gz: c41235cfdeb50f936ce00b366cb46a471c5f17fe226c3220af0b3106ab529e72
3
+ metadata.gz: 9b1a0e93bcfc54d72099552315b11447f4b5148d47813d2fd71b246e345b8575
4
+ data.tar.gz: d89280141c723a08d54f8719c87cda2f5e7f5df23d92d0ccad081c6e6df26d29
5
5
  SHA512:
6
- metadata.gz: 6df0a09a49f852756a0d43da46f128b81c3e985c046076dac2bebbdb1fb96c7e4f6ab0b5b9e9a1a88917656619ed28b90f0b45b67366902df2b06555a48d4c2d
7
- data.tar.gz: 6fddaddffd9017529b7230c2e1d96760cbedb02d8cccb0a9079ba5f2e5795c89b745d8bb5e55de07b2dd621f278d4d2cad8efab72475416ab869061ac1d3b4cf
6
+ metadata.gz: ed07f8cdc4f7f3b3fff0cd4b038106f8108bce3be2eff24b6742c1e4b92b8a1b2ca689ba8cef5ef8046bdf2b839cadb146b465597ad2de890fa5ed2b79f8afdc
7
+ data.tar.gz: 9b802ca5813ed504d50157827d5f7c89693ce97229c793d479cd425b5d9db03d8fd4dc937d24464b792d45fcd1de2d91aeaba364e81d1887777ec1fe48b12372
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- joplin (0.5.0)
4
+ joplin (0.5.1)
5
5
  faraday (~> 1.0)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -8,7 +8,7 @@ Creating a note
8
8
  Joplin::token = "your joplintoken here copied from the webclippper settings"
9
9
 
10
10
  begin
11
- note = Joplin::Notes.new
11
+ note = Joplin::Note.new
12
12
  note.title = "a new note"
13
13
  note.body = "markdown content"
14
14
  note.save!
@@ -19,7 +19,7 @@ end
19
19
 
20
20
  updating a note
21
21
  ```ruby
22
- note = Joplin::Notes.new "6e3811c7a73148a" # note id can be found in the information of any note
22
+ note = Joplin::Note.new "6e3811c7a73148a" # note id can be found in the information of any note
23
23
  note.title = "a new note title"
24
24
  note.save!
25
25
  ```
@@ -42,4 +42,4 @@ to get the token programatically. It reads from the sqlite database located in `
42
42
 
43
43
  Will take a notebook and concatenate all notes into one for easy export to PDF
44
44
 
45
- The token argument is optional and if you have it installed locally it will find the token
45
+ The token argument is optional and if you have it installed locally it will find the token
@@ -1,3 +1,3 @@
1
1
  module Joplin
2
- VERSION = "0.5.0"
2
+ VERSION = "0.5.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: joplin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Bretoi