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 ADDED
@@ -0,0 +1 @@
1
+ .rvmrc
data/.travis.yml ADDED
@@ -0,0 +1,3 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.3
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source :rubygems
2
+
3
+ group :test do
4
+ gem 'rspec'
5
+ gem 'rake'
6
+ end
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
@@ -0,0 +1,8 @@
1
+ require 'rspec/core/rake_task'
2
+
3
+ task :default => [:test]
4
+
5
+ desc "Run all tests"
6
+ RSpec::Core::RakeTask.new(:test) do |t|
7
+ t.rspec_opts = '-cfs'
8
+ end
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: '0.3'
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
- - gems/todo-txt-0.1.1.gem
23
- - gems/todo-txt-0.1.gem
24
- - gems/todo-txt-0.2.1.gem
25
- - gems/todo-txt-0.2.gem
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
Binary file
Binary file
Binary file
Binary file