never 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 911a598fe2cf55bc22c64ba87b363141a00b1f48
4
- data.tar.gz: f849141383e05ebda1919fe1920fcd9be096ae2a
3
+ metadata.gz: 9638f1f43639938770f7764f9103affbeeb57a22
4
+ data.tar.gz: 8d73d76f3b7971f74298dfc64e24925f4ee68b35
5
5
  SHA512:
6
- metadata.gz: 59059f844c193819d6abfc31de3dd1fe910aff15399772cdf02c27f54476c575d83536f261302b4c64416b34e582d3d1fd78f1b1b8a1fc7da3678d082c6f30a2
7
- data.tar.gz: c4983a2f4eda25d4ad730eaa888f59c60f42d3bf60092b94aeb05505538287d50f01f3832b58aa6caef6967abaa1416aa2fbb39c6cecca3ced50cb72df482d9e
6
+ metadata.gz: 77324fc8696ef6b320f9dd0502d35505c49231cfc1bd6f3e3b0878c907245d6582072c7db79f3f63b2a02c326f2ed1aaff524388756143698fdc6b358df36a6f
7
+ data.tar.gz: 5de2300f2015ffe9a607a84b014afb6b97f902946c306c339cd5fb3bdcdf990b9039fb37fe4f106b89a51176c6e1bb34ee248c2ee461c5de738009709b8b414e
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2014 Viktor Fröberg
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md CHANGED
@@ -1,28 +1,18 @@
1
1
  # Never
2
2
 
3
- TODO: Write a gem description
3
+ Never is a simple tool that provides a list of your todos in comments
4
4
 
5
5
  ## Installation
6
6
 
7
- Add this line to your application's Gemfile:
8
-
9
- gem 'never'
10
-
11
- And then execute:
12
-
13
- $ bundle
14
-
15
- Or install it yourself as:
16
-
17
7
  $ gem install never
18
8
 
19
9
  ## Usage
20
10
 
21
- TODO: Write usage instructions here
11
+ $ never
22
12
 
23
13
  ## Contributing
24
14
 
25
- 1. Fork it ( https://github.com/[my-github-username]/never/fork )
15
+ 1. Fork it ( https://github.com/vikfroberg/never/fork )
26
16
  2. Create your feature branch (`git checkout -b my-new-feature`)
27
17
  3. Commit your changes (`git commit -am 'Add some feature'`)
28
18
  4. Push to the branch (`git push origin my-new-feature`)
data/Rakefile CHANGED
@@ -1 +1 @@
1
- require "bundler/gem_tasks"
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'never'
4
+ puts Never.execute
@@ -1,8 +1,10 @@
1
1
  # TODO: tests
2
- # TODO: support for local and global .todoignore
3
- # TODO: support for --help --version
4
- # TODO: todo status method for listing todos
5
- # TODO: Caching
2
+ # TODO: support for local .todoignore
3
+ # TODO: support for --help --version with Thor, move never status
4
+ # TODO: caching
5
+ # TODO: only search comments
6
+ # TODO: group todos per file
7
+ # TODO: support for global .todoignore
6
8
 
7
9
  class Never
8
10
 
@@ -32,5 +34,5 @@ class Never
32
34
  end
33
35
 
34
36
  if __FILE__ == $0
35
- puts Never.execute
36
- end
37
+ puts Never.execute
38
+ end
@@ -5,11 +5,11 @@ require 'never/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "never"
8
- spec.version = Never::VERSION
8
+ spec.version = "0.0.4"
9
9
  spec.authors = ["Viktor Fröberg"]
10
10
  spec.email = ["vikfroberg@gmail.com"]
11
11
  spec.summary = %q{Never sees your todo comments}
12
- spec.description = %q{Never is a simple tool that provides a list of your todos in comments. }
12
+ spec.description = %q{Never is a simple tool that provides a list of your todos in comments}
13
13
  spec.homepage = "http://rubygems.org/gems/never"
14
14
  spec.license = "MIT"
15
15
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: never
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Viktor Fröberg
@@ -24,20 +24,21 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '1.6'
27
- description: 'Never is a simple tool that provides a list of your todos in comments. '
27
+ description: Never is a simple tool that provides a list of your todos in comments
28
28
  email:
29
29
  - vikfroberg@gmail.com
30
- executables: []
30
+ executables:
31
+ - never
31
32
  extensions: []
32
33
  extra_rdoc_files: []
33
34
  files:
34
35
  - ".gitignore"
35
36
  - Gemfile
36
- - LICENSE.txt
37
+ - LICENSE
37
38
  - README.md
38
39
  - Rakefile
40
+ - bin/never
39
41
  - lib/never.rb
40
- - lib/never/version.rb
41
42
  - never.gemspec
42
43
  homepage: http://rubygems.org/gems/never
43
44
  licenses:
@@ -1,22 +0,0 @@
1
- Copyright (c) 2014 Viktor Fröberg
2
-
3
- MIT License
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining
6
- a copy of this software and associated documentation files (the
7
- "Software"), to deal in the Software without restriction, including
8
- without limitation the rights to use, copy, modify, merge, publish,
9
- distribute, sublicense, and/or sell copies of the Software, and to
10
- permit persons to whom the Software is furnished to do so, subject to
11
- the following conditions:
12
-
13
- The above copyright notice and this permission notice shall be
14
- included in all copies or substantial portions of the Software.
15
-
16
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -1,3 +0,0 @@
1
- module Never
2
- VERSION = "0.0.3"
3
- end