things-client 0.1.0

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/things.gemspec ADDED
@@ -0,0 +1,68 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{things}
8
+ s.version = "0.0.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Marcin Bunsch"]
12
+ s.date = %q{2010-02-06}
13
+ s.email = %q{marcin@applicake.com}
14
+ s.extra_rdoc_files = [
15
+ "LICENSE",
16
+ "README"
17
+ ]
18
+ s.files = [
19
+ ".document",
20
+ ".gitignore",
21
+ "LICENSE",
22
+ "README",
23
+ "Rakefile",
24
+ "VERSION",
25
+ "lib/appscript/reference.rb",
26
+ "lib/things.rb",
27
+ "lib/things/app.rb",
28
+ "lib/things/collections/todo.rb",
29
+ "lib/things/list.rb",
30
+ "lib/things/status.rb",
31
+ "lib/things/todo.rb",
32
+ "spec/spec.opts",
33
+ "spec/spec_helper.rb",
34
+ "spec/things/app_spec.rb",
35
+ "spec/things/collections/todo_spec.rb",
36
+ "spec/things/todo_spec.rb",
37
+ "spec/things_spec.rb"
38
+ ]
39
+ s.homepage = %q{http://github.com/marcinbunsch/things}
40
+ s.rdoc_options = ["--charset=UTF-8"]
41
+ s.require_paths = ["lib"]
42
+ s.rubygems_version = %q{1.3.5}
43
+ s.summary = %q{A Ruby API client written for the Mac GTD app Things}
44
+ s.test_files = [
45
+ "spec/spec_helper.rb",
46
+ "spec/things/app_spec.rb",
47
+ "spec/things/collections/todo_spec.rb",
48
+ "spec/things/todo_spec.rb",
49
+ "spec/things_spec.rb"
50
+ ]
51
+
52
+ if s.respond_to? :specification_version then
53
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
54
+ s.specification_version = 3
55
+
56
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
57
+ s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
58
+ s.add_runtime_dependency(%q<rb-appscript>, [">= 0.5.3"])
59
+ else
60
+ s.add_dependency(%q<rspec>, [">= 1.2.9"])
61
+ s.add_dependency(%q<rb-appscript>, [">= 0.5.3"])
62
+ end
63
+ else
64
+ s.add_dependency(%q<rspec>, [">= 1.2.9"])
65
+ s.add_dependency(%q<rb-appscript>, [">= 0.5.3"])
66
+ end
67
+ end
68
+
metadata ADDED
@@ -0,0 +1,110 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: things-client
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Marcin Bunsch
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2010-02-08 00:00:00 +01:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: rspec
17
+ type: :development
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 1.2.9
24
+ version:
25
+ - !ruby/object:Gem::Dependency
26
+ name: rb-appscript
27
+ type: :runtime
28
+ version_requirement:
29
+ version_requirements: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 0.5.3
34
+ version:
35
+ description:
36
+ email: marcin@applicake.com
37
+ executables: []
38
+
39
+ extensions: []
40
+
41
+ extra_rdoc_files:
42
+ - LICENSE
43
+ - README.rdoc
44
+ files:
45
+ - .document
46
+ - .gitignore
47
+ - LICENSE
48
+ - README.rdoc
49
+ - Rakefile
50
+ - VERSION
51
+ - lib/appscript/reference.rb
52
+ - lib/things.rb
53
+ - lib/things/app.rb
54
+ - lib/things/area.rb
55
+ - lib/things/collections/todo.rb
56
+ - lib/things/list.rb
57
+ - lib/things/project.rb
58
+ - lib/things/reference/base.rb
59
+ - lib/things/reference/inheritance.rb
60
+ - lib/things/reference/record.rb
61
+ - lib/things/status.rb
62
+ - lib/things/tag.rb
63
+ - lib/things/todo.rb
64
+ - spec/spec.opts
65
+ - spec/spec_helper.rb
66
+ - spec/things/app_spec.rb
67
+ - spec/things/area_spec.rb
68
+ - spec/things/collections/todo_spec.rb
69
+ - spec/things/project_spec.rb
70
+ - spec/things/tag_spec.rb
71
+ - spec/things/todo_spec.rb
72
+ - spec/things_spec.rb
73
+ - things.gemspec
74
+ has_rdoc: true
75
+ homepage: http://github.com/marcinbunsch/things
76
+ licenses: []
77
+
78
+ post_install_message:
79
+ rdoc_options:
80
+ - --charset=UTF-8
81
+ require_paths:
82
+ - lib
83
+ required_ruby_version: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - ">="
86
+ - !ruby/object:Gem::Version
87
+ version: "0"
88
+ version:
89
+ required_rubygems_version: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - ">="
92
+ - !ruby/object:Gem::Version
93
+ version: "0"
94
+ version:
95
+ requirements: []
96
+
97
+ rubyforge_project:
98
+ rubygems_version: 1.3.5
99
+ signing_key:
100
+ specification_version: 3
101
+ summary: A Ruby client for Things' Applescript API. Things is a GTD app for OS X.
102
+ test_files:
103
+ - spec/spec_helper.rb
104
+ - spec/things/app_spec.rb
105
+ - spec/things/area_spec.rb
106
+ - spec/things/collections/todo_spec.rb
107
+ - spec/things/project_spec.rb
108
+ - spec/things/tag_spec.rb
109
+ - spec/things/todo_spec.rb
110
+ - spec/things_spec.rb