logan 0.1.2 → 0.1.3
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.
- checksums.yaml +4 -4
- data/lib/logan/todo.rb +2 -2
- metadata +10 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c585ab8667cacf627cb22756a3b5e79c03c943d4
|
|
4
|
+
data.tar.gz: b1446c01c02d4ae765b5e3a5d1024dab9ce4917f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0a415d2b10fe20bf8de8103031cf0c204f8a0ca9646a8c8283d32a491283dcd4bc6de8242fa54d47cdb3329d28f58507998130d84fcfa49f3f5ad4c5d367b716
|
|
7
|
+
data.tar.gz: f4ab9aef971f044f394617948c301e7a0494a1807d4cd79d5de3250baff7f87d19a7f52385d0974b1310362451e7ddc51a63a616d4c5de4df39d86c8e1d3f74f
|
data/lib/logan/todo.rb
CHANGED
|
@@ -19,7 +19,7 @@ module Logan
|
|
|
19
19
|
{
|
|
20
20
|
:content => @content,
|
|
21
21
|
:due_at => @due_at,
|
|
22
|
-
:assignee =>
|
|
22
|
+
:assignee => @assignee.nil? ? nil : @assignee.to_hash
|
|
23
23
|
}.to_json
|
|
24
24
|
end
|
|
25
25
|
|
|
@@ -27,7 +27,7 @@ module Logan
|
|
|
27
27
|
{
|
|
28
28
|
:content => @content,
|
|
29
29
|
:due_at => @due_at,
|
|
30
|
-
:assignee =>
|
|
30
|
+
:assignee => @assignee.nil? ? nil : @assignee.to_hash,
|
|
31
31
|
:position => (@position.nil? || @position.empty?) ? 99 : @position,
|
|
32
32
|
:completed => @completed
|
|
33
33
|
}.to_json
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logan
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stephen Birarda
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-10-
|
|
11
|
+
date: 2014-10-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: httparty
|
|
@@ -28,28 +28,28 @@ dependencies:
|
|
|
28
28
|
name: json
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
|
-
- -
|
|
31
|
+
- - ~>
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
33
|
version: '1.8'
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
|
-
- -
|
|
38
|
+
- - ~>
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '1.8'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: yard
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
|
-
- -
|
|
45
|
+
- - ~>
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
47
|
version: '0.8'
|
|
48
48
|
type: :development
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
|
-
- -
|
|
52
|
+
- - ~>
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '0.8'
|
|
55
55
|
- !ruby/object:Gem::Dependency
|
|
@@ -73,11 +73,11 @@ extensions: []
|
|
|
73
73
|
extra_rdoc_files: []
|
|
74
74
|
files:
|
|
75
75
|
- lib/logan.rb
|
|
76
|
-
- lib/logan/HashConstructed.rb
|
|
77
76
|
- lib/logan/client.rb
|
|
78
77
|
- lib/logan/comment.rb
|
|
79
78
|
- lib/logan/errors.rb
|
|
80
79
|
- lib/logan/event.rb
|
|
80
|
+
- lib/logan/HashConstructed.rb
|
|
81
81
|
- lib/logan/person.rb
|
|
82
82
|
- lib/logan/project.rb
|
|
83
83
|
- lib/logan/response_handler.rb
|
|
@@ -93,17 +93,17 @@ require_paths:
|
|
|
93
93
|
- lib
|
|
94
94
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
95
95
|
requirements:
|
|
96
|
-
- -
|
|
96
|
+
- - '>='
|
|
97
97
|
- !ruby/object:Gem::Version
|
|
98
98
|
version: 1.8.7
|
|
99
99
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
100
100
|
requirements:
|
|
101
|
-
- -
|
|
101
|
+
- - '>='
|
|
102
102
|
- !ruby/object:Gem::Version
|
|
103
103
|
version: '0'
|
|
104
104
|
requirements: []
|
|
105
105
|
rubyforge_project:
|
|
106
|
-
rubygems_version: 2.
|
|
106
|
+
rubygems_version: 2.0.14
|
|
107
107
|
signing_key:
|
|
108
108
|
specification_version: 4
|
|
109
109
|
summary: ruby gem to communicate with new Basecamp API
|