brpm_module_selenium 0.1.11 → 0.1.12

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,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- NDdhOWM3OTE0MjhlMzlmMzUwMWIyODU5YzI2NDM2ZGVlY2U5ZTlmYQ==
4
+ ZmI1OThhYmFiZTg2NDZlMGJkOGQxYjk1YTNiMzA0ZDE5Y2RkZTRkZg==
5
5
  data.tar.gz: !binary |-
6
- YWZhMDgzODE2ZmI0YWE5NGU2NTFkY2M1MDI4NjUxZThlYmQ5MmUzMQ==
6
+ YjNkNWI0NzgyZGNlMjNhNTYzNmVkY2JjNTBiNzJjMWZiZjU0MzNhYQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- MTRjMThjZmI0MGM2ZDljMjEzYTJkNWQ5YjIyY2Y2NjRmYTlkM2UzNTU0ZWNm
10
- YmFiY2IxODk0Zjk5YTI4NTc2MmQ2ODVhZGZiNjEzYzgwZTFlYWY2YTM5ZjA5
11
- NmVlMTBlZDM3ZjliMjUyYWVlM2JhNDdkYTBlNmU3ODA5MmIyZjg=
9
+ ZWUzMGI5ZjMwMDVkMmZhOTg1ZDlmZjA0YmFhYjNmYmVmZWI3YTc4ZTU0MDAw
10
+ MDJjYjQ2NGEyZjc4ZWZhYjE5OWZkNTIyODdhNzg3YmRhNzAyN2YwMWQ5NWEw
11
+ MmJmOTRlNTU1OTIxYjg2YmQ0Yjc0YmExMWQ1NDBiODhkMGU5OGY=
12
12
  data.tar.gz: !binary |-
13
- ODk1NjNhY2E1ODczNzFhZjBmZmY3NTJkODMyMTMyMzRkN2U4MGFhMGE1MDRl
14
- YTcyNTNmZWM2M2VhNTFkZjQ2NTRjNDc4NDVjYmIyZDUyNzBiZTdlODlkYTZm
15
- YTZiYTBiN2ZiMTExNDQ5NzEyNmIxNTgxMTZkZjVhZjg5ZDJmNWU=
13
+ ODdjMTQ0ZDUwZTFkYTMxMzliNDdiOTNmMWM5MjI0NzJlZTkxMzE5YmJkZGUz
14
+ NTI1NjIxZTZmYjYzZTRmZjY3MmNkODZkM2M3YjczYTk5NzdjYTJhMzUzOTNm
15
+ ZjEzZTYzOWFiZTQyN2UyOTA0ZWE3NzljZjIzM2I2ZjVhNjJkM2M=
data/.travis.yml CHANGED
@@ -6,7 +6,7 @@ before_install:
6
6
  bundler_args: '' #remove the --deployment flag that causes the gems to be installed in .../1.9.1/...
7
7
 
8
8
  script:
9
- - rspec tests --format documentation --color
9
+ - bundle exec rspec tests --format documentation --color
10
10
 
11
11
  notifications:
12
12
  email:
data/Rakefile CHANGED
@@ -1,4 +1,3 @@
1
- # Copied from https://github.com/mitchellh/vagrant-aws/blob/master/Rakefile
2
1
  require 'rubygems'
3
2
  require 'bundler/setup'
4
3
  require 'rspec/core/rake_task'
data/config.yml CHANGED
@@ -1,10 +1,11 @@
1
1
  dependencies:
2
- - brpm_module_brpm: { version: "0.1.24" }
2
+ - brpm_module_brpm: { version: "0.1.32" }
3
3
 
4
- version: 0.1.11
4
+ version: 0.1.12
5
5
 
6
6
  author: Niek Bartholomeus
7
7
  email: niek.bartholomeus@gmail.com
8
8
  homepage: https://github.com/BMC-RLM/brpm_module_selenium
9
+ license: MIT
9
10
  summary: Selenium automation scripts and libraries to run on top of the BRPM Content framework
10
- description: Selenium automation scripts and libraries to run on top of the BRPM Content framework. See https://github.com/BMC-RLM/brpm_content for more information about the BRPM Content framework
11
+ description: Selenium automation scripts and libraries to run on top of the BRPM Content framework. See https://github.com/BMC-RLM/brpm_content_framework for more information about the BRPM Content framework
@@ -3,17 +3,17 @@ require "yaml"
3
3
  config = YAML.load_file(File.join(File.dirname(__FILE__), "config.yml"))
4
4
 
5
5
  Gem::Specification.new do |spec|
6
- spec.name = File.basename(File.expand_path(File.dirname(__FILE__)))
6
+ spec.name = File.basename(File.expand_path(File.dirname(__FILE__))).sub("-#{config["version"]}", "")
7
7
  spec.version = config["version"]
8
8
  spec.platform = Gem::Platform::RUBY
9
- spec.license = "GNU General Public License v2.0"
9
+ spec.license = config["license"]
10
10
  spec.authors = [config["author"]]
11
11
  spec.email = config["email"]
12
12
  spec.homepage = config["homepage"]
13
13
  spec.summary = config["summary"]
14
14
  spec.description = config["description"]
15
15
 
16
- spec.add_runtime_dependency "brpm_content", ">=0.1.10"
16
+ spec.add_runtime_dependency "brpm_content_framework", ">=0.2.8"
17
17
 
18
18
  if config["dependencies"]
19
19
  config["dependencies"].each do |dependency|
@@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
24
24
  modul = dependency
25
25
  options = {}
26
26
  end
27
- spec.add_runtime_dependency modul, options["version"] unless ["brpm", "bladelogic", "jira"].include?(modul)
27
+ spec.add_runtime_dependency modul, options["version"]
28
28
  end
29
29
  end
30
30
 
@@ -32,8 +32,5 @@ Gem::Specification.new do |spec|
32
32
  spec.add_development_dependency "rspec"
33
33
 
34
34
  spec.files = `git ls-files`.split("\n")
35
- spec.require_path = 'lib'
36
-
37
35
  spec.executables = spec.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
38
- spec.bindir = "bin"
39
36
  end
@@ -11,7 +11,7 @@ describe 'execute test run' do
11
11
 
12
12
  params["application"] = 'E-Finance'
13
13
  params["application"] = 'EF - java calculation engine'
14
- BrpmScriptExecutor.execute_automation_script_from_gem("brpm_module_selenium", "execute_test_run", params)
14
+ BrpmScriptExecutor.execute_automation_script("brpm_module_selenium", "execute_test_run", params)
15
15
 
16
16
  #verify the tests: check if the tests were executed succesfully
17
17
  #test_run = @selenium_cli_client.get_test_run(...)
@@ -0,0 +1,11 @@
1
+ require_relative "spec_helper"
2
+
3
+ describe 'Gemspec' do
4
+ it 'should have the right license' do
5
+ config = YAML.load_file(File.expand_path("#{File.dirname(__FILE__)}/../config.yml"))
6
+
7
+ expect(config).to have_key("license")
8
+ expect(config["license"].downcase).not_to include("gpl")
9
+ expect(config["license"].downcase).not_to include("gnu")
10
+ end
11
+ end
data/tests/spec_helper.rb CHANGED
@@ -7,7 +7,7 @@ def setup_brpm_auto
7
7
 
8
8
  BrpmAuto.setup( get_default_params.merge!(get_integration_params_for_selenium) )
9
9
 
10
- BrpmAuto.require_module_from_gem "brpm_module_selenium"
10
+ BrpmAuto.require_module "brpm_module_selenium"
11
11
 
12
12
  @selenium_cli_client = SeleniumCliClient.new
13
13
  end
metadata CHANGED
@@ -1,43 +1,43 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: brpm_module_selenium
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.11
4
+ version: 0.1.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Niek Bartholomeus
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-07-23 00:00:00.000000000 Z
11
+ date: 2015-09-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: brpm_content
14
+ name: brpm_content_framework
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - ! '>='
18
18
  - !ruby/object:Gem::Version
19
- version: 0.1.10
19
+ version: 0.2.8
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ! '>='
25
25
  - !ruby/object:Gem::Version
26
- version: 0.1.10
26
+ version: 0.2.8
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: brpm_module_brpm
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - '='
32
32
  - !ruby/object:Gem::Version
33
- version: 0.1.24
33
+ version: 0.1.32
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - '='
39
39
  - !ruby/object:Gem::Version
40
- version: 0.1.24
40
+ version: 0.1.32
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rake
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -67,8 +67,8 @@ dependencies:
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
69
  description: Selenium automation scripts and libraries to run on top of the BRPM Content
70
- framework. See https://github.com/BMC-RLM/brpm_content for more information about
71
- the BRPM Content framework
70
+ framework. See https://github.com/BMC-RLM/brpm_content_framework for more information
71
+ about the BRPM Content framework
72
72
  email: niek.bartholomeus@gmail.com
73
73
  executables: []
74
74
  extensions: []
@@ -83,14 +83,15 @@ files:
83
83
  - Rakefile
84
84
  - automations/execute_test_run.meta
85
85
  - automations/execute_test_run.rb
86
- - brpm_module_selenium.gemspec
87
86
  - config.yml
88
87
  - lib/selenium_cli_client.rb
88
+ - module.gemspec
89
89
  - tests/execute_test_run_spec.rb
90
+ - tests/gemspec_spec.rb
90
91
  - tests/spec_helper.rb
91
92
  homepage: https://github.com/BMC-RLM/brpm_module_selenium
92
93
  licenses:
93
- - GNU General Public License v2.0
94
+ - MIT
94
95
  metadata: {}
95
96
  post_install_message:
96
97
  rdoc_options: []