joplin 0.5.0 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +3 -3
- data/lib/joplin/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9b1a0e93bcfc54d72099552315b11447f4b5148d47813d2fd71b246e345b8575
|
4
|
+
data.tar.gz: d89280141c723a08d54f8719c87cda2f5e7f5df23d92d0ccad081c6e6df26d29
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed07f8cdc4f7f3b3fff0cd4b038106f8108bce3be2eff24b6742c1e4b92b8a1b2ca689ba8cef5ef8046bdf2b839cadb146b465597ad2de890fa5ed2b79f8afdc
|
7
|
+
data.tar.gz: 9b802ca5813ed504d50157827d5f7c89693ce97229c793d479cd425b5d9db03d8fd4dc937d24464b792d45fcd1de2d91aeaba364e81d1887777ec1fe48b12372
|
data/Gemfile.lock
CHANGED
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::
|
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::
|
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
|
data/lib/joplin/version.rb
CHANGED