ehpt 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/ehpt/create_stories.rb +2 -7
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0fb8d4c1fb9c87fd89ae55444f3f8cd7f3a7bc83e6de0924b91f0d1930ee8908
|
4
|
+
data.tar.gz: 5a5c317ffd25042a9aeede1dc8fe1f8122188f1e8a41ecd5245a1ae620ce6990
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 89956c440258c42310af997979c343152222469cc01f801fbf53558edee233d5a1cc976a80a2c6c013dd4cd52705553bc8ae7fa038dd953be51ba7a9fd00a7b1
|
7
|
+
data.tar.gz: b41201119b1f05296d1c9ed1a2e84de882b523d3512c6c157fd97eefa5e5159f2475d378eeea003b2547eb966a1d16042e43e4b3b641a8d32e3994b23d3a7c96
|
data/lib/ehpt/create_stories.rb
CHANGED
@@ -6,14 +6,9 @@ class Ehpt
|
|
6
6
|
class CreateStories < Base
|
7
7
|
attr_reader :csv_content, :project
|
8
8
|
|
9
|
-
ARRAY_TYPE_ATTRIBUTES = %w[
|
10
|
-
labels tasks pull_requests branches blockers followers comments reviews
|
11
|
-
]
|
9
|
+
ARRAY_TYPE_ATTRIBUTES = %w[ labels tasks pull_requests branches blockers comments reviews ]
|
12
10
|
|
13
|
-
INT_ARRAY_TYPE_ATTRIBUTES = %w[
|
14
|
-
owner_ids label_ids task_ids pull_request_ids branch_ids
|
15
|
-
blocker_ids follower_ids comment_ids review_ids
|
16
|
-
]
|
11
|
+
INT_ARRAY_TYPE_ATTRIBUTES = %w[ owner_ids label_ids follower_ids ]
|
17
12
|
|
18
13
|
INT_TYPE_ATTRIBUTES = %w[ project_id requested_by_id before_id after_id integration_id ]
|
19
14
|
|