busser-pybot 0.1.8 → 0.1.10

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: 695fa05f10222e6e5a36f8be441b7fbc3b462b6a
4
- data.tar.gz: ccae3e7144413c9f6f1352b7cc549df4519a111f
3
+ metadata.gz: 6c697a525fce9719a61ab5bed016a9beb52fd1d5
4
+ data.tar.gz: 2217c7d58a750973b530574982b3a5363d6a1999
5
5
  SHA512:
6
- metadata.gz: 2580024a79ab08c4546b7b0ad5e7fb7ec70ccc3df5cda4c8593f8ddfe7df437cd5f79072ca98256ed5e13357b1f5d2af7cdbf23ab0e964471f6563ee4b67b721
7
- data.tar.gz: 70e4d7080f2c0e55a5d442626eb6d1dfe3ff9b41483653c5e06a4c468e1591cf16fac00455d25dc8f2464a0e2880d90df6950596bff7164cb504d37d7eef2eb6
6
+ metadata.gz: b23813fcef7b4d2c00a5b20a07b75f9dfb13b44e998a5fc6b974304f56274affab31fe8b4c889e9cd79b576dbdddfb346556e0000b2465a93dc6b615c9eb7052
7
+ data.tar.gz: 0daf816dc233fda28282094a9246b85fe2a512fbc06ec222865b22bfbc313a27bb4e400f2921e6d8f8e49d4b2ce7a08ca1233f4d365b325ebeaf9f111c580d7d
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
- Author:: TODO: Write your name (<TODO: Write your email>)
1
+ Author:: TODO: KOTINI TIRUMULA (kotinitirumula@gmail.com)
2
2
 
3
- Copyright (C) 2017, TODO: Write your name
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 [TODO: Write your name][author] (<TODO: Write your email>)
30
+ Created and maintained by [KOTINI TIRUMULA][author] (<kotinitirumula@gmail.com>)
31
31
 
32
32
  ## <a name="license"></a> License
33
33
 
@@ -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.coml']
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 = 'https://github.com/kotini/busser-pybot.git'
13
+ gem.homepage = ''
14
14
  gem.license = 'Apache 2.0'
15
15
 
16
16
  gem.files = `git ls-files`.split($/)
@@ -1,8 +1,8 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  #
3
- # Author:: TODO: Write your name (<TODO: Write your email>)
3
+ # Author:: KOTINI TIRUMULA (kotinitirumula@gmail.com)
4
4
  #
5
- # Copyright (C) 2017, TODO: Write your name
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.8"
24
+ VERSION = "0.1.10"
25
25
  end
26
26
  end
@@ -1,8 +1,8 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  #
3
- # Author:: TODO: Write your name (<TODO: Write your email>)
3
+ # Author:: KOTINI TIRUMULA (kotinitirumula@gmail.com)
4
4
  #
5
- # Copyright (C) 2017, TODO: Write your name
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 TODO: Write your name <TODO: Write your email>
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.8
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.coml
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: https://github.com/kotini/busser-pybot.git
134
+ homepage: ''
135
135
  licenses:
136
136
  - Apache 2.0
137
137
  metadata: {}