noteman 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: cfef1b0d08554efc0f7bfc71f6ed9b543e7c2cbf
4
+ data.tar.gz: 6fc35f393c65667903582ec4f3a6a55a6dec6481
5
+ SHA512:
6
+ metadata.gz: cd280e064149e5bd7fe56a8d12a55acb8f880c31b085ff3ffb54234a64e29370ba153039038dab455c901c86d9a1482a6b3f658c950d15c466b25b76d86136df
7
+ data.tar.gz: 0764f98f71f87d9c03e506cb8d40deb9ea314f133c8c3445906756697fe65184baf15fefec6e4308827c554455acd6b145454f92621a67707bbfc536aa89b500
data/bin/note ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'noteman'
4
+
5
+ inbox = Inbox.new
6
+
7
+ inbox.hi
data/lib/noteman.rb ADDED
@@ -0,0 +1,4 @@
1
+ require 'noteman/version.rb'
2
+ require 'noteman/inbox.rb'
3
+
4
+ NOTING_CONFIG_NAME = ".notemanrc"
@@ -0,0 +1,5 @@
1
+ class Inbox
2
+ def hi
3
+ puts "Hi, this is your inbox."
4
+ end
5
+ end
@@ -0,0 +1,3 @@
1
+ module Noting
2
+ VERSION = '0.0.0'
3
+ end
metadata ADDED
@@ -0,0 +1,48 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: noteman
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Xiaoxing Hu
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-10-31 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A tool for managing your markdown notes.
14
+ email: dawnstar.hu@gmail.com
15
+ executables:
16
+ - note
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - bin/note
21
+ - lib/noteman.rb
22
+ - lib/noteman/inbox.rb
23
+ - lib/noteman/version.rb
24
+ homepage:
25
+ licenses:
26
+ - MIT
27
+ metadata: {}
28
+ post_install_message:
29
+ rdoc_options: []
30
+ require_paths:
31
+ - lib
32
+ required_ruby_version: !ruby/object:Gem::Requirement
33
+ requirements:
34
+ - - ">="
35
+ - !ruby/object:Gem::Version
36
+ version: '0'
37
+ required_rubygems_version: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ requirements: []
43
+ rubyforge_project:
44
+ rubygems_version: 2.4.1
45
+ signing_key:
46
+ specification_version: 4
47
+ summary: You advanced note manager.
48
+ test_files: []