mustard_client 0.1.44 → 0.1.45

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
  SHA1:
3
- metadata.gz: 67e8cb22a7019cdb59a439cb2478897513d3a281
4
- data.tar.gz: 3ef8e5043d3b8b89f394b4167206623aa0c1352a
3
+ metadata.gz: 1965a6f4c40dbdec22039626bea404f4d0f73c7b
4
+ data.tar.gz: 9883ae2ccfadf059cfce11b3c94b7f9efe1b7b14
5
5
  SHA512:
6
- metadata.gz: e8bcc57330fcf261e7ace87abfdf8563a33804b54dddb2f893b4e8d462ad4fccb2fdea68859654fddefeff1be1de681a09bf3c01c8be9cfe77f8404105fdbcb5
7
- data.tar.gz: 8a09073eb8f4e83a95a9a5990b36576ff24a83104a31b9a1b79ac7185f7644fea0f9e217626a770ebb95eaba45c819aca5375589933ac65125312ebdf8bd1cdc
6
+ metadata.gz: e1e3c35163adb45304a09500657486957ecfd0c64182e898aadb408d6717e29f2799e98c19ae7089ee044dda917ca146b253d21e3241b5c0ce2735e1bbe84158
7
+ data.tar.gz: 1a183943e76abfd46e509ddd4603f16b14a084022f2c3a4666162867cf906e7c39bdf75588abc286bce6320e98a9f9de07262f9d4c54410f15fef35900dc6aea
@@ -70,5 +70,38 @@ module MustardClient
70
70
 
71
71
  end
72
72
 
73
+ def keywords project_id
74
+
75
+ command = {}
76
+ command[:method] = :get
77
+ command[:route] = @mustard_url + "/projects/#{project_id}/keywords"
78
+ command[:headers] = {'User-Token' => @user_token}
79
+
80
+ execute(command)
81
+
82
+ end
83
+
84
+ def testcases project_id
85
+
86
+ command = {}
87
+ command[:method] = :get
88
+ command[:route] = @mustard_url + "/projects/#{project_id}/testcases"
89
+ command[:headers] = {'User-Token' => @user_token}
90
+
91
+ execute(command)
92
+
93
+ end
94
+
95
+ def executions project_id
96
+
97
+ command = {}
98
+ command[:method] = :get
99
+ command[:route] = @mustard_url + "/projects/#{project_id}/executions"
100
+ command[:headers] = {'User-Token' => @user_token}
101
+
102
+ execute(command)
103
+
104
+ end
105
+
73
106
  end
74
107
  end
@@ -1,3 +1,3 @@
1
1
  module MustardClient
2
- VERSION = "0.1.44"
2
+ VERSION = "0.1.45"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mustard_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.44
4
+ version: 0.1.45
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Watson