teambox-things-sync 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 (4) hide show
  1. data/README.md +21 -13
  2. data/VERSION +1 -1
  3. data/teambox-things-sync.gemspec +71 -0
  4. metadata +3 -2
data/README.md CHANGED
@@ -1,38 +1,46 @@
1
1
 
2
- **teambox-things-sync** lets you sync your Things todos to and from Teambox Collaboration Software.
2
+ **teambox-things-sync** lets you sync your [Things][things] todos to and from [Teambox][teambox].
3
3
 
4
4
  It fetches todos from remote teambox app (project, task name, due date, task list name) and updates completed ones in both ways. Project (named like the one in teambox) will be created in Things if necessary. By default only tasks assigned to you are imported.
5
5
 
6
6
  Installation
7
7
  -------------------------------------------------------------------------------
8
8
 
9
- For now you can install only from source:
10
-
11
- git clone git://github.com/fastred/teambox-things-sync.git
12
- cd teambox-things-sync
13
- bundle install
14
-
15
- Then create a file $HOME/.teambox with these values:
9
+ Firstly, create a file $HOME/.teambox with these values:
16
10
 
17
11
  username: your_teambox_username_or_email
18
12
  password: password
19
- site_url: http://your-teambox-app.com (optional, default set to http://teambox.com)
13
+
14
+ # and an optional: (default set to http://teambox.com)
15
+ site_url: http://your-teambox-app.com
20
16
 
17
+ Then, install gem from rubygems:
21
18
 
19
+ gem install teambox-things-sync
20
+
21
+ If you got error please add `sudo` before the command.
22
+
22
23
  Usage
23
24
  -------------------------------------------------------------------------------
24
25
 
25
26
  Now you can run:
26
27
 
27
- ruby sync.rb
28
+ teambox-things-sync
28
29
 
29
30
  You should see output with names of imported tasks.
30
31
 
31
- If it worked you can add it to your crontab:
32
+ If it worked, you can add it to your crontab. Type `crontab -e` in Terminal and add this line:
32
33
 
33
- 1,31 * * * * cd /path/to/teambox-things-sync/ && ruby sync.rb
34
+ 1,31 * * * * teambox-things-sync > /dev/null 2>&1
35
+
36
+ Or if you're using RVM:
37
+
38
+ 1,31 * * * * source /Users/username/.rvm/scripts/rvm && rvm use rubyver@gemset && teambox-things-sync > /dev/null 2>&1
34
39
 
35
40
  Legal
36
41
  -------------------------------------------------------------------------------
37
42
 
38
- Things is a trademark of Cultured Code GmbH & Co. KG.
43
+ Things is a trademark of Cultured Code GmbH & Co. KG.
44
+
45
+ [things]: http://culturedcode.com/things/ "Things OS X Application"
46
+ [teambox]: http://teambox.com/ "Teambox - Collaboration Software"
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
@@ -0,0 +1,71 @@
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{teambox-things-sync}
8
+ s.version = "0.1.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Arkadiusz Holko"]
12
+ s.date = %q{2010-09-15}
13
+ s.default_executable = %q{teambox-things-sync}
14
+ s.email = %q{fastred@fastred.org}
15
+ s.executables = ["teambox-things-sync"]
16
+ s.extra_rdoc_files = [
17
+ "LICENSE",
18
+ "README.md"
19
+ ]
20
+ s.files = [
21
+ ".gitignore",
22
+ "Gemfile",
23
+ "Gemfile.lock",
24
+ "LICENSE",
25
+ "README.md",
26
+ "Rakefile",
27
+ "VERSION",
28
+ "bin/teambox-things-sync",
29
+ "lib/teambox-things-sync.rb",
30
+ "lib/teambox-things-sync/base.rb",
31
+ "lib/teambox-things-sync/command.rb",
32
+ "lib/teambox-things-sync/config_store.rb",
33
+ "lib/teambox-things-sync/task_list_cache.rb",
34
+ "spec/spec_helper.rb",
35
+ "spec/teambox-things-sync/base_spec.rb",
36
+ "spec/teambox-things-sync/task_list_cache_spec.rb",
37
+ "spec/teambox-things-sync_spec.rb",
38
+ "teambox-things-sync.gemspec"
39
+ ]
40
+ s.homepage = %q{http://github.com/fastred/teambox-things-sync}
41
+ s.rdoc_options = ["--charset=UTF-8"]
42
+ s.require_paths = ["lib"]
43
+ s.rubygems_version = %q{1.3.6}
44
+ s.summary = %q{Simple ruby app for Teambox and Things.app syncing}
45
+ s.test_files = [
46
+ "spec/spec_helper.rb",
47
+ "spec/teambox-things-sync/base_spec.rb",
48
+ "spec/teambox-things-sync/task_list_cache_spec.rb",
49
+ "spec/teambox-things-sync_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>, [">= 2.0.0.beta.20"])
58
+ s.add_runtime_dependency(%q<teambox-client>, ["= 0.2.0"])
59
+ s.add_runtime_dependency(%q<things-client>, ["= 0.2.4"])
60
+ else
61
+ s.add_dependency(%q<rspec>, [">= 2.0.0.beta.20"])
62
+ s.add_dependency(%q<teambox-client>, ["= 0.2.0"])
63
+ s.add_dependency(%q<things-client>, ["= 0.2.4"])
64
+ end
65
+ else
66
+ s.add_dependency(%q<rspec>, [">= 2.0.0.beta.20"])
67
+ s.add_dependency(%q<teambox-client>, ["= 0.2.0"])
68
+ s.add_dependency(%q<things-client>, ["= 0.2.4"])
69
+ end
70
+ end
71
+
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 0
9
- version: 0.1.0
8
+ - 1
9
+ version: 0.1.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Arkadiusz Holko
@@ -88,6 +88,7 @@ files:
88
88
  - spec/teambox-things-sync/base_spec.rb
89
89
  - spec/teambox-things-sync/task_list_cache_spec.rb
90
90
  - spec/teambox-things-sync_spec.rb
91
+ - teambox-things-sync.gemspec
91
92
  has_rdoc: true
92
93
  homepage: http://github.com/fastred/teambox-things-sync
93
94
  licenses: []