todo-txt 0.3 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +1 -0
- data/.travis.yml +3 -0
- data/Gemfile +6 -0
- data/LICENSE +16 -0
- data/Rakefile +8 -0
- data/todo-txt.gemspec +2 -4
- metadata +9 -8
- data/gems/todo-txt-0.1.1.gem +0 -0
- data/gems/todo-txt-0.1.gem +0 -0
- data/gems/todo-txt-0.2.1.gem +0 -0
- data/gems/todo-txt-0.2.gem +0 -0
data/.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.rvmrc
|
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Todo.tx Client Library, in Ruby
|
|
2
|
+
Copyright (C) 2011 Sam Rose
|
|
3
|
+
|
|
4
|
+
This program is free software; you can redistribute it and/or
|
|
5
|
+
modify it under the terms of the GNU General Public License
|
|
6
|
+
as published by the Free Software Foundation; either version 2
|
|
7
|
+
of the License, or (at your option) any later version.
|
|
8
|
+
|
|
9
|
+
This program is distributed in the hope that it will be useful,
|
|
10
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
11
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
12
|
+
GNU General Public License for more details.
|
|
13
|
+
|
|
14
|
+
You should have received a copy of the GNU General Public License
|
|
15
|
+
along with this program; if not, write to the Free Software
|
|
16
|
+
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
data/Rakefile
ADDED
data/todo-txt.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = %q{todo-txt}
|
|
3
|
-
s.version = "0.3"
|
|
3
|
+
s.version = "0.3.1"
|
|
4
4
|
s.date = %q{2012-03-31}
|
|
5
5
|
s.authors = ["Sam Rose"]
|
|
6
6
|
s.email = %q{samwho@lbak.co.uk}
|
|
@@ -11,7 +11,5 @@ Gem::Specification.new do |s|
|
|
|
11
11
|
s.license = 'GPL-2'
|
|
12
12
|
|
|
13
13
|
# Add all files to the files parameter.
|
|
14
|
-
s.files =
|
|
15
|
-
Dir["**/*.*"].each { |path| s.files.push path }
|
|
16
|
-
s.files.push ".gemtest"
|
|
14
|
+
s.files = `git ls-files`.split /\n/
|
|
17
15
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: todo-txt
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -18,21 +18,22 @@ executables: []
|
|
|
18
18
|
extensions: []
|
|
19
19
|
extra_rdoc_files: []
|
|
20
20
|
files:
|
|
21
|
+
- .gemtest
|
|
22
|
+
- .gitignore
|
|
23
|
+
- .travis.yml
|
|
24
|
+
- Gemfile
|
|
21
25
|
- Gemfile.lock
|
|
22
|
-
-
|
|
23
|
-
-
|
|
24
|
-
-
|
|
25
|
-
-
|
|
26
|
+
- LICENSE
|
|
27
|
+
- README.md
|
|
28
|
+
- Rakefile
|
|
29
|
+
- lib/todo-txt.rb
|
|
26
30
|
- lib/todo-txt/list.rb
|
|
27
31
|
- lib/todo-txt/task.rb
|
|
28
|
-
- lib/todo-txt.rb
|
|
29
|
-
- README.md
|
|
30
32
|
- spec/data/todo.txt
|
|
31
33
|
- spec/spec_helper.rb
|
|
32
34
|
- spec/todo-txt/list_spec.rb
|
|
33
35
|
- spec/todo-txt/task_spec.rb
|
|
34
36
|
- todo-txt.gemspec
|
|
35
|
-
- .gemtest
|
|
36
37
|
homepage: http://github.com/samwho/todo-txt-gem
|
|
37
38
|
licenses:
|
|
38
39
|
- GPL-2
|
data/gems/todo-txt-0.1.1.gem
DELETED
|
Binary file
|
data/gems/todo-txt-0.1.gem
DELETED
|
Binary file
|
data/gems/todo-txt-0.2.1.gem
DELETED
|
Binary file
|
data/gems/todo-txt-0.2.gem
DELETED
|
Binary file
|