marginalia-io 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -23,6 +23,7 @@ Or install it yourself as:
23
23
  ```
24
24
  Tasks:
25
25
  marginalia append ID # Append to the given note
26
+ marginalia create TITLE # Create a ntew note with the given title
26
27
  marginalia edit ID # Edit the given note in the editor
27
28
  marginalia help [TASK] # Describe available tasks or one specific task
28
29
  marginalia list # List all notes
@@ -50,6 +51,9 @@ note_5 = api.get(5) # Get the note with id 5
50
51
  api.append(5, "Hi There") # Append "Hi There" with a timestamp to the end of not 5
51
52
 
52
53
  api.update(5, "Hello There") # replace the body of note 5 with "Hello There"
54
+
55
+ api.create("Title", "Body") # create a note with the given title and body
56
+
53
57
  ```
54
58
 
55
59
 
@@ -22,6 +22,10 @@ module Marginalia
22
22
  self.class.post("/notes/#{id}/append.json", :body => {:body => body})
23
23
  end
24
24
 
25
+ def create(title, body)
26
+ self.class.post("/notes.json", :body => {:note => {:body => body, :title => title}})
27
+ end
28
+
25
29
  def all
26
30
  self.class.get("/notes.json").parsed_response
27
31
  end
@@ -96,6 +96,21 @@ updated: #{note['updated_at']}
96
96
  api.append(id, body)
97
97
  end
98
98
 
99
+ desc "create TITLE", "Create a note with the given title"
100
+ def create(*args)
101
+ title = args.join(" ")
102
+ temp = Tempfile.new(['journal', '.md'])
103
+ system(ENV['EDITOR'], temp.path)
104
+ body = temp.read
105
+ if body.strip == ""
106
+ exit 0
107
+ end
108
+
109
+ resp = api.create(title, body).parsed_response
110
+ puts "Created note #{resp['id']}"
111
+
112
+ end
113
+
99
114
  default_task :list
100
115
 
101
116
  no_tasks do
@@ -1,5 +1,5 @@
1
1
  module Marginalia
2
2
  module IO
3
- VERSION = "0.0.1"
3
+ VERSION = "0.0.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: marginalia-io
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: