firespring_dev_commands 2.1.10.pre.alpha.4 → 2.1.10
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: 454eca01ee701343196392ecd9a040508e72c5f40129140d2630b8da4162b5fc
|
|
4
|
+
data.tar.gz: 709aef47b600f8abf81b95799c60b368c76f08a54010e5932458b70c04b54c4f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0afc7e3e304edc242949542f19014c7e6c77e9d7e927df53e6db5ba865fcb451d517347f68da4c2ef9bef40623d82cb2e8b0a38ea41bc0a8485c9548077b26c1
|
|
7
|
+
data.tar.gz: 63f75b79835f081f92e05d124e34014d0cd9a7c871a95f262e51f7ece898c730efa93c4bade621a7344e0d89b323870f6020b7b531ad2c4c9f6369aef42793b4
|
|
@@ -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
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: firespring_dev_commands
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.10
|
|
4
|
+
version: 2.1.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Firespring
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-10-
|
|
11
|
+
date: 2023-10-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -341,9 +341,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
341
341
|
version: '3.1'
|
|
342
342
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
343
343
|
requirements:
|
|
344
|
-
- - "
|
|
344
|
+
- - ">="
|
|
345
345
|
- !ruby/object:Gem::Version
|
|
346
|
-
version:
|
|
346
|
+
version: '0'
|
|
347
347
|
requirements: []
|
|
348
348
|
rubygems_version: 3.4.10
|
|
349
349
|
signing_key:
|