busser-pybot 0.1.2 → 0.1.3

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: 7f7530a21ead50d1080f8924fea920039198be26
4
- data.tar.gz: ddc7f4ffe118181788b3f5b0c71689a78c5d5086
3
+ metadata.gz: f9eb7c7a23160b720df3b09955a31a949bf30875
4
+ data.tar.gz: 7df7b9b44f763cb06d21d5c5a5b69de5bcefcd73
5
5
  SHA512:
6
- metadata.gz: db24695713bbcb78c87b771ef780039b8887fc9078ad90933a8f44ef25edd741fd7498a274601622157fbb0489e3e7c7787eb3705d4d8ebfa1743f59da869495
7
- data.tar.gz: 20ca135aa8cf559ef690cded8817fbc2f4bea5a98758ec695aff12cf7559df7d535f628dc617d4f1da888fdb38291e823fab0653a052878cd6623587dce74101
6
+ metadata.gz: 3a165f45a8c505be20ed55f92942b9c63f6d9d074025723e1d83e272a1becbd241a4e09ef4ccf2bf13cf8dd4cf26d9956402cbf7d8c43a319cafd94e9f9f595b
7
+ data.tar.gz: 256dc8ce52e63c38e768c61e144071187eefa9330208758216e09480075700a0d4807dd7440210271f3ca9614274aeeb8f4fa7a492a1ca025562111e6e1df022
@@ -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.2"
24
+ VERSION = "0.1.3"
25
25
  end
26
26
  end
@@ -25,13 +25,21 @@ require 'busser/runner_plugin'
25
25
  class Busser::RunnerPlugin::Pybot < Busser::RunnerPlugin::Base
26
26
 
27
27
  postinstall do
28
- inside(Pathname.new(__FILE__).dirname.join("../../../vendor/pybot")) do
29
- FileUtils.ln_sf("../libexec/pybot", "bin/pybot")
30
- run!(%{./install.sh #{vendor_path("pybot")}})
31
- end
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
+
32
40
  end
33
41
 
34
42
  def test
35
- run!("#{vendor_path("pybot").join("bin/pybot")} #{suite_path("pybot")}")
43
+ run!("pybot #{suite_path("pybot")}")
36
44
  end
37
45
  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.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - KOTINI TIRUMULA