noted 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/README.markdown +27 -0
  2. data/VERSION +1 -1
  3. data/noted.gemspec +3 -3
  4. metadata +3 -3
  5. data/README.mdown +0 -23
data/README.markdown ADDED
@@ -0,0 +1,27 @@
1
+ # noted
2
+
3
+ Just a quick filter in your Rails projects for notes tasked to you. Looks through your notes
4
+ for your github username (@twitter style) and dutifully reports it back to you.
5
+
6
+ ## install
7
+
8
+ `gem install noted`
9
+
10
+ ## usage
11
+
12
+ So, like this:
13
+
14
+ def awesome?
15
+ everyone_else?
16
+ # TODO: shit, I should make sure I'm awesome, too - @holman
17
+ end
18
+
19
+ ...lets you then do something like this:
20
+
21
+ noted
22
+ => app/models/awesomator.rb:
23
+ => * [ 94] [TODO] shit, I should make sure I'm awesome, too - @holman
24
+
25
+ ## about
26
+
27
+ [@holman](http://twitter.com/holman) did this.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
data/noted.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{noted}
8
- s.version = "0.1.0"
8
+ s.version = "0.1.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Zach Holman"]
@@ -16,13 +16,13 @@ Gem::Specification.new do |s|
16
16
  s.executables = ["noted"]
17
17
  s.extra_rdoc_files = [
18
18
  "LICENSE",
19
- "README.mdown"
19
+ "README.markdown"
20
20
  ]
21
21
  s.files = [
22
22
  ".document",
23
23
  ".gitignore",
24
24
  "LICENSE",
25
- "README.mdown",
25
+ "README.markdown",
26
26
  "Rakefile",
27
27
  "VERSION",
28
28
  "bin/noted",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: noted
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Zach Holman
@@ -21,12 +21,12 @@ extensions: []
21
21
 
22
22
  extra_rdoc_files:
23
23
  - LICENSE
24
- - README.mdown
24
+ - README.markdown
25
25
  files:
26
26
  - .document
27
27
  - .gitignore
28
28
  - LICENSE
29
- - README.mdown
29
+ - README.markdown
30
30
  - Rakefile
31
31
  - VERSION
32
32
  - bin/noted
data/README.mdown DELETED
@@ -1,23 +0,0 @@
1
- = noted
2
-
3
- Just a quick filter in your Rails projects for notes tasked to you. For example:
4
-
5
- == install
6
-
7
- `gem install noted`
8
-
9
- == usage
10
-
11
- So, like this:
12
-
13
- `def awesome?
14
- everyone_else?
15
- # TODO: shit, I should make sure I'm awesome, too - @holman
16
- end`
17
-
18
- ...lets you then do something like this:
19
-
20
- `noted
21
- => app/models/awesomator.rb:
22
- => * [ 94] [TODO] shit, I should make sure I'm awesome, too - @holman
23
- `