rubyfocus 0.3.0 → 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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/rubyfocus.gemspec +11 -11
  3. data/version.txt +1 -1
  4. metadata +6 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ba866c7a553641c90dd8804d86c198a7cd720c3e
4
- data.tar.gz: 58c47389f885a131eb300e18dd57aa5aed6eb197
3
+ metadata.gz: 61a752ab5129ed61bbe2f963646d66ef2e1b3b97
4
+ data.tar.gz: e19a2a1e78254bd70b72379ddf4bcd77520e9c04
5
5
  SHA512:
6
- metadata.gz: ba9aac7051986e1aa922a7077d388aae5202866a2342c3b64554debddf133da49cf3fc3042caec5e506a9e886aed41f66c90e53c4c9a5c5bd15d13cadaa8f403
7
- data.tar.gz: 870cc1ccc452e2deecf1418a49500a3f966dbc88521161c96647f7ff7f19002720e504d4ad90ae8e2ce365864e385d63ae4cad9fc7b39ba45a66ce26c2fb2c36
6
+ metadata.gz: 663d2e0ca73d48a96079b9bec2435226ff8bb7d807abb7a9e8d4d7c86b0ea9038f458722d8e8692f5cd411f50bfbaf6c7428cc4976f1e26bdcf6cab7f3b5a2da
7
+ data.tar.gz: 81d92aab4bc7fce3d8d6d376836c6e7154aceae519a143c6782d61c1dd4426b5e678e2bf634d75b3825d0cb3d5fb74597baf6c48e2251aa1565b4e93062478d0
data/rubyfocus.gemspec CHANGED
@@ -2,21 +2,21 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "rubyfocus"
5
- s.version = File.read('version.txt')
5
+ s.version = File.read("version.txt")
6
6
  s.licenses = ["MIT"]
7
7
 
8
- s.summary = "Gem summary here."
9
- s.description = "Gem description here."
8
+ s.summary = "Pure ruby bridge to OmniFocus."
9
+ s.description = "Use this gem to talk to OmniFocus. Extracts projects, contexts, and tasks from local or remote OmniFocus databases."
10
10
 
11
- s.author = 'Jan-Yves Ruzicka'
12
- s.email = 'janyves.ruzicka@gmail.com'
13
- s.homepage = 'https://github.com/jyruzicka/rubyfocus'
11
+ s.author = "Jan-Yves Ruzicka"
12
+ s.email = "jan@1klb.com"
13
+ s.homepage = "http://1klb.com/projects/rubyfocus/"
14
14
 
15
- s.files = File.read('Manifest').split("\n").select{ |l| !l.start_with?('#') && l != ''}
16
- s.require_paths << 'lib'
17
- s.extra_rdoc_files = ['README.md']
15
+ s.files = File.read("Manifest").split("\n").select{ |l| !l.start_with?("#") && l != ""}
16
+ s.require_paths << "lib"
17
+ s.extra_rdoc_files = ["README.md"]
18
18
 
19
19
  # Add runtime dependencies here
20
- s.add_runtime_dependency 'nokogiri', '~> 1.6', ">= 1.6.6"
21
- s.add_runtime_dependency 'rubyzip', '~> 1.1', ">= 1.1.7"
20
+ s.add_runtime_dependency "nokogiri", "~> 1.6", ">= 1.6.6"
21
+ s.add_runtime_dependency "rubyzip", "~> 1.1", ">= 1.1.7"
22
22
  end
data/version.txt CHANGED
@@ -1 +1 @@
1
- 0.3.0
1
+ 0.3.1
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubyfocus
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan-Yves Ruzicka
@@ -50,8 +50,9 @@ dependencies:
50
50
  - - ">="
51
51
  - !ruby/object:Gem::Version
52
52
  version: 1.1.7
53
- description: Gem description here.
54
- email: janyves.ruzicka@gmail.com
53
+ description: Use this gem to talk to OmniFocus. Extracts projects, contexts, and tasks
54
+ from local or remote OmniFocus databases.
55
+ email: jan@1klb.com
55
56
  executables: []
56
57
  extensions: []
57
58
  extra_rdoc_files:
@@ -85,7 +86,7 @@ files:
85
86
  - lib/rubyfocus/xml_translator.rb
86
87
  - rubyfocus.gemspec
87
88
  - version.txt
88
- homepage: https://github.com/jyruzicka/rubyfocus
89
+ homepage: http://1klb.com/projects/rubyfocus/
89
90
  licenses:
90
91
  - MIT
91
92
  metadata: {}
@@ -109,5 +110,5 @@ rubyforge_project:
109
110
  rubygems_version: 2.4.5.1
110
111
  signing_key:
111
112
  specification_version: 4
112
- summary: Gem summary here.
113
+ summary: Pure ruby bridge to OmniFocus.
113
114
  test_files: []