busser-pybot 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f9eb7c7a23160b720df3b09955a31a949bf30875
4
- data.tar.gz: 7df7b9b44f763cb06d21d5c5a5b69de5bcefcd73
3
+ metadata.gz: 28b2c10a980eb18d08abee75aae558949dbd7c13
4
+ data.tar.gz: 3a2cf270fccd4214b3217f6ead6d54e3df147ab6
5
5
  SHA512:
6
- metadata.gz: 3a165f45a8c505be20ed55f92942b9c63f6d9d074025723e1d83e272a1becbd241a4e09ef4ccf2bf13cf8dd4cf26d9956402cbf7d8c43a319cafd94e9f9f595b
7
- data.tar.gz: 256dc8ce52e63c38e768c61e144071187eefa9330208758216e09480075700a0d4807dd7440210271f3ca9614274aeeb8f4fa7a492a1ca025562111e6e1df022
6
+ metadata.gz: bfab2575ee5dc2b0bc1ed76e3cb348bacd92bcc2c7d8073551c8e66f04ace2c66ab66c119e9608a3b83d2e6bcbfdcf34a9ab8e19667505c7f278b4b0ef60eeb8
7
+ data.tar.gz: 0ebb8bfbcde73d392efc965e05ab04344622599c877df98eb2325167813bace7a0eeede17b02a29e2647143d9028c704ac8a9d489c82045d554ff5cf8f449ace
@@ -21,6 +21,6 @@ module Busser
21
21
  module Pybot
22
22
 
23
23
  # Version string for the Pybot Busser runner plugin
24
- VERSION = "0.1.3"
24
+ VERSION = "0.1.4"
25
25
  end
26
26
  end
@@ -15,7 +15,7 @@
15
15
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
16
  # See the License for the specific language governing permissions and
17
17
  # limitations under the License.
18
- require "pathname"
18
+
19
19
  require 'busser/runner_plugin'
20
20
 
21
21
  # A Busser runner plugin for Pybot.
@@ -25,21 +25,19 @@ require 'busser/runner_plugin'
25
25
  class Busser::RunnerPlugin::Pybot < Busser::RunnerPlugin::Base
26
26
 
27
27
  postinstall do
28
- run!(%{package "python"}})
29
- run!(%{log "Python Installed"}})
30
- run!(%{log "Pip Downloading"}})
31
- run!(%{system 'curl "https://bootstrap.pypa.io/get-pip.py" -o "get-pip.py"'}})
32
- run!(%{log "Pip Downloaded"}})
33
- run!(%{log "Pip Installing"}})
34
- run!(%{system 'python get-pip.py'}})
35
- run!(%{log "Pip Installed"}})
36
- run!(%{system 'pip install robotframework'}})
37
- run!(%{log "Pip robotframework Installed"}})
38
-
39
-
28
+ package "python"
29
+ log "Python Installed"
30
+ log "Pip Downloading"
31
+ system 'curl "https://bootstrap.pypa.io/get-pip.py" -o "get-pip.py"'
32
+ log "Pip Downloaded"
33
+ log "Pip Installing"
34
+ system "python get-pip.py"
35
+ log "Pip Installed"
36
+ system "pip install robotframework"
37
+ log "Pip robotframework Installed"
40
38
  end
41
39
 
42
40
  def test
43
- run!("pybot #{suite_path("pybot")}")
41
+ run!("#{vendor_path("pybot").join("bin/pybot")} #{suite_path("pybot")}")
44
42
  end
45
43
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: busser-pybot
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - KOTINI TIRUMULA