firespring_dev_commands 2.1.10.pre.alpha.4 → 2.1.10.pre.alpha.5
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 62baa06722c11abd6dbeda93dc863b50c14baac098fb11e2842b499151bfada1
|
|
4
|
+
data.tar.gz: 6bc8fa52af979ffde25719a3fb0f03ff239cd2965305d78bd6de06e728e94e8f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dfcf275ea624bb24805b81f699b4fc017be7313e860e92d4a6f9f637ffc5a77ff439223a9065f45e46bd286a0cada69d298bdb923631d674b509ae9c2c11e788
|
|
7
|
+
data.tar.gz: 217ec1203111108634a4cbbba2708b7b9ec736e3bff9a8a352d7539054f2b9530783f9ba497b0436b755366931e59120a60abca8d03417868580430bea5abaaf
|
|
@@ -47,6 +47,7 @@ module Dev
|
|
|
47
47
|
generate
|
|
48
48
|
end
|
|
49
49
|
|
|
50
|
+
# TODO: Do these need moved to their associated entities?
|
|
50
51
|
# Add a filter that looks for stories whose id is contained in the list of ids given
|
|
51
52
|
def filter_by_user_story_ids(user_story_ids)
|
|
52
53
|
self << "(Id in ('#{user_story_ids.join("', '")}'))"
|
|
@@ -3,10 +3,10 @@ module Dev
|
|
|
3
3
|
# Class containing project information
|
|
4
4
|
class TeamAssignment
|
|
5
5
|
# The resource type for the api endpoint
|
|
6
|
-
RESOURCE_TYPE = '
|
|
6
|
+
RESOURCE_TYPE = 'TeamAssignment'.freeze
|
|
7
7
|
|
|
8
8
|
# The api path for team assignment requests
|
|
9
|
-
PATH =
|
|
9
|
+
PATH = '/TeamAssignments'.freeze
|
|
10
10
|
|
|
11
11
|
attr_accessor :id, :type, :start_date, :end_date, :team, :story
|
|
12
12
|
|
|
@@ -3,10 +3,10 @@ module Dev
|
|
|
3
3
|
# Class containing user story information
|
|
4
4
|
class UserStory
|
|
5
5
|
# The resource type for the api endpoint
|
|
6
|
-
RESOURCE_TYPE = '
|
|
6
|
+
RESOURCE_TYPE = 'UserStory'.freeze
|
|
7
7
|
|
|
8
8
|
# The api path for user story requests
|
|
9
|
-
PATH =
|
|
9
|
+
PATH = '/UserStories'.freeze
|
|
10
10
|
|
|
11
11
|
attr_accessor :type, :id, :name, :description, :start_date, :end_date, :create_date, :modify_date, :tags, :effort, :time_spent, :last_state_change_date, :project,
|
|
12
12
|
:owner, :creator, :release, :team, :priority, :state, :original_data
|