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: 52dbe9d1eca34f2c4fd17091e276936d72331cc76c74f8a8ef91913fcbd5c045
4
- data.tar.gz: d43ea562ec24047cb2823b838f5ec0f8a8b4baf64f6fbf7b50a3cbae6bbe6812
3
+ metadata.gz: 62baa06722c11abd6dbeda93dc863b50c14baac098fb11e2842b499151bfada1
4
+ data.tar.gz: 6bc8fa52af979ffde25719a3fb0f03ff239cd2965305d78bd6de06e728e94e8f
5
5
  SHA512:
6
- metadata.gz: 233a5b1828fc69777ceefba80d6c428e35bf96fcfad0061ba79f2a2645a955076c979bb98ab3882b193db35f6a401d0aaa733ffa9fc4151bdd3f83f1d2403f11
7
- data.tar.gz: 705ffd119c0ad4b25efe65353feb6e763da62527d485d562f029d3796395e481fd2e7af84ae3b2432bf35c94b9791738c4b9f6e8ca2035714388d77ccbe4c314
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 = 'TeamAssignments'.freeze
6
+ RESOURCE_TYPE = 'TeamAssignment'.freeze
7
7
 
8
8
  # The api path for team assignment requests
9
- PATH = "/#{RESOURCE_TYPE}".freeze
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 = 'UserStories'.freeze
6
+ RESOURCE_TYPE = 'UserStory'.freeze
7
7
 
8
8
  # The api path for user story requests
9
- PATH = "/#{RESOURCE_TYPE}".freeze
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
@@ -6,6 +6,6 @@ module Dev
6
6
  # Use 'v.v.v.pre.alpha.v' for pre-release vesions
7
7
  # Use 'v.v.v.beta.v for beta versions
8
8
  # Use semantic versioning for any releases (https://semver.org/)
9
- VERSION = '2.1.10.pre.alpha.4'.freeze
9
+ VERSION = '2.1.10.pre.alpha.5'.freeze
10
10
  end
11
11
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: firespring_dev_commands
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.10.pre.alpha.4
4
+ version: 2.1.10.pre.alpha.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Firespring