busser-pybot 0.1.8 → 0.1.10
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 +4 -4
- data/LICENSE +2 -2
- data/README.md +1 -1
- data/busser-pybot.gemspec +2 -2
- data/lib/busser/pybot/version.rb +3 -3
- data/lib/busser/runner_plugin/pybot.rb +4 -9
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6c697a525fce9719a61ab5bed016a9beb52fd1d5
|
|
4
|
+
data.tar.gz: 2217c7d58a750973b530574982b3a5363d6a1999
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b23813fcef7b4d2c00a5b20a07b75f9dfb13b44e998a5fc6b974304f56274affab31fe8b4c889e9cd79b576dbdddfb346556e0000b2465a93dc6b615c9eb7052
|
|
7
|
+
data.tar.gz: 0daf816dc233fda28282094a9246b85fe2a512fbc06ec222865b22bfbc313a27bb4e400f2921e6d8f8e49d4b2ce7a08ca1233f4d365b325ebeaf9f111c580d7d
|
data/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Author:: TODO:
|
|
1
|
+
Author:: TODO: KOTINI TIRUMULA (kotinitirumula@gmail.com)
|
|
2
2
|
|
|
3
|
-
Copyright (C) 2017,
|
|
3
|
+
Copyright (C) 2017, KOTINI TIRUMULA
|
|
4
4
|
|
|
5
5
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
6
|
you may not use this file except in compliance with the License.
|
data/README.md
CHANGED
|
@@ -27,7 +27,7 @@ example:
|
|
|
27
27
|
|
|
28
28
|
## <a name="authors"></a> Authors
|
|
29
29
|
|
|
30
|
-
Created and maintained by [
|
|
30
|
+
Created and maintained by [KOTINI TIRUMULA][author] (<kotinitirumula@gmail.com>)
|
|
31
31
|
|
|
32
32
|
## <a name="license"></a> License
|
|
33
33
|
|
data/busser-pybot.gemspec
CHANGED
|
@@ -7,10 +7,10 @@ Gem::Specification.new do |gem|
|
|
|
7
7
|
gem.name = 'busser-pybot'
|
|
8
8
|
gem.version = Busser::Pybot::VERSION
|
|
9
9
|
gem.authors = ['KOTINI TIRUMULA']
|
|
10
|
-
gem.email = ['kotinitirumula@gmail.
|
|
10
|
+
gem.email = ['kotinitirumula@gmail.com']
|
|
11
11
|
gem.description = %q{A Busser runner plugin for Pybot}
|
|
12
12
|
gem.summary = gem.description
|
|
13
|
-
gem.homepage = '
|
|
13
|
+
gem.homepage = ''
|
|
14
14
|
gem.license = 'Apache 2.0'
|
|
15
15
|
|
|
16
16
|
gem.files = `git ls-files`.split($/)
|
data/lib/busser/pybot/version.rb
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
2
|
#
|
|
3
|
-
# Author::
|
|
3
|
+
# Author:: KOTINI TIRUMULA (kotinitirumula@gmail.com)
|
|
4
4
|
#
|
|
5
|
-
# Copyright (C) 2017,
|
|
5
|
+
# Copyright (C) 2017, KOTINI TIRUMULA
|
|
6
6
|
#
|
|
7
7
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
8
8
|
# you may not use this file except in compliance with the License.
|
|
@@ -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.
|
|
24
|
+
VERSION = "0.1.10"
|
|
25
25
|
end
|
|
26
26
|
end
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
2
|
#
|
|
3
|
-
# Author::
|
|
3
|
+
# Author:: KOTINI TIRUMULA (kotinitirumula@gmail.com)
|
|
4
4
|
#
|
|
5
|
-
# Copyright (C) 2017,
|
|
5
|
+
# Copyright (C) 2017, KOTINI TIRUMULA
|
|
6
6
|
#
|
|
7
7
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
8
8
|
# you may not use this file except in compliance with the License.
|
|
@@ -20,23 +20,18 @@ require 'busser/runner_plugin'
|
|
|
20
20
|
|
|
21
21
|
# A Busser runner plugin for Pybot.
|
|
22
22
|
#
|
|
23
|
-
# @author
|
|
23
|
+
# @author KOTINI TIRUMULA (kotinitirumula@gmail.com)
|
|
24
24
|
#
|
|
25
25
|
class Busser::RunnerPlugin::Pybot < Busser::RunnerPlugin::Base
|
|
26
26
|
|
|
27
27
|
postinstall do
|
|
28
|
-
#put "Pip Downloading"
|
|
29
28
|
run!("curl 'https://bootstrap.pypa.io/get-pip.py' -o 'get-pip.py'")
|
|
30
|
-
#put "Pip Downloaded"
|
|
31
|
-
#put "Pip Installing"
|
|
32
29
|
run!("python get-pip.py")
|
|
33
|
-
#put "Pip Installed"
|
|
34
30
|
run!("pip install robotframework")
|
|
35
|
-
#put "Pip robotframework Installed"
|
|
36
31
|
|
|
37
32
|
end
|
|
38
33
|
|
|
39
34
|
def test
|
|
40
|
-
run!("pybot #{suite_path("pybot")}")
|
|
35
|
+
run!("pybot -d pybotlog #{suite_path("pybot")}")
|
|
41
36
|
end
|
|
42
37
|
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.
|
|
4
|
+
version: 0.1.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- KOTINI TIRUMULA
|
|
@@ -110,7 +110,7 @@ dependencies:
|
|
|
110
110
|
version: '0'
|
|
111
111
|
description: A Busser runner plugin for Pybot
|
|
112
112
|
email:
|
|
113
|
-
- kotinitirumula@gmail.
|
|
113
|
+
- kotinitirumula@gmail.com
|
|
114
114
|
executables: []
|
|
115
115
|
extensions: []
|
|
116
116
|
extra_rdoc_files: []
|
|
@@ -131,7 +131,7 @@ files:
|
|
|
131
131
|
- features/test_command.feature
|
|
132
132
|
- lib/busser/pybot/version.rb
|
|
133
133
|
- lib/busser/runner_plugin/pybot.rb
|
|
134
|
-
homepage:
|
|
134
|
+
homepage: ''
|
|
135
135
|
licenses:
|
|
136
136
|
- Apache 2.0
|
|
137
137
|
metadata: {}
|