ranbanery 0.1.6 → 0.1.7
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/VERSION +1 -1
- data/lib/ranbanery/user.rb +5 -0
- data/lib/ranbanery.rb +4 -0
- data/ranbanery.gemspec +2 -1
- metadata +3 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.7
|
data/lib/ranbanery.rb
CHANGED
|
@@ -33,6 +33,10 @@ module Kanbanery
|
|
|
33
33
|
resource(:project)
|
|
34
34
|
end
|
|
35
35
|
|
|
36
|
+
def users(project_id=nil)
|
|
37
|
+
resource(:user, prefix: project_id ? "/projects/#{project_id}" : nil)
|
|
38
|
+
end
|
|
39
|
+
|
|
36
40
|
def columns(project_id=nil)
|
|
37
41
|
resource(:column, prefix: project_id ? "/projects/#{project_id}" : nil)
|
|
38
42
|
end
|
data/ranbanery.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "ranbanery"
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.7"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Jan Schwenzien"]
|
|
@@ -33,6 +33,7 @@ Gem::Specification.new do |s|
|
|
|
33
33
|
"lib/ranbanery/project.rb",
|
|
34
34
|
"lib/ranbanery/subtask.rb",
|
|
35
35
|
"lib/ranbanery/task.rb",
|
|
36
|
+
"lib/ranbanery/user.rb",
|
|
36
37
|
"ranbanery.gemspec",
|
|
37
38
|
"test/helper.rb",
|
|
38
39
|
"test/test_ranbanery.rb"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ranbanery
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.7
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -147,6 +147,7 @@ files:
|
|
|
147
147
|
- lib/ranbanery/project.rb
|
|
148
148
|
- lib/ranbanery/subtask.rb
|
|
149
149
|
- lib/ranbanery/task.rb
|
|
150
|
+
- lib/ranbanery/user.rb
|
|
150
151
|
- ranbanery.gemspec
|
|
151
152
|
- test/helper.rb
|
|
152
153
|
- test/test_ranbanery.rb
|
|
@@ -165,7 +166,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
165
166
|
version: '0'
|
|
166
167
|
segments:
|
|
167
168
|
- 0
|
|
168
|
-
hash:
|
|
169
|
+
hash: 4026615662632532330
|
|
169
170
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
170
171
|
none: false
|
|
171
172
|
requirements:
|