qaxqa 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: df9f7888f4498b16c4b6080bf4482053d9e37435
4
+ data.tar.gz: 549c625be38fdcb7ec912c7cfa2f65ba80c4272f
5
+ SHA512:
6
+ metadata.gz: 26e2415418464d8f552c68c7b79ee069ff7ce8c316ada0781cf93469387b23eb3303024c00190e22f039afb139af86df1829d0c9c5d4366bb58706a6f01e0f13
7
+ data.tar.gz: 17f2172a19f5a6959f82a5f17cea71933bc82c826431023d6e03be0f8912fa9735d6ee2d92100e11ef707f97e5f6ed56038f5a4c00b14ad7ec00313bbdf8f0d9
data/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ .byebug_history
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.simplecov ADDED
@@ -0,0 +1,3 @@
1
+ SimpleCov.start do
2
+ add_group "lib", "lib"
3
+ end
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3.0
5
+ before_install: gem install bundler -v 1.13.6
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at ronaldo.possan@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in qaxqa.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Ronaldo Possan
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,42 @@
1
+ # Qaxqa [![Build Status](https://travis-ci.org/rpossan/qaxqa.svg?branch=master)](https://travis-ci.org/rpossan/qaxqa) [![Code Climate](https://codeclimate.com/github/rpossan/qaxqa/badges/gpa.svg)](https://codeclimate.com/github/rpossan/qaxqa)
2
+
3
+ This a Ruby gem that helps to convert output exported from TestLink to a valid formatted input to HP Quality Center.
4
+
5
+
6
+ ## Installation
7
+
8
+ Add this line to your application's Gemfile:
9
+
10
+ ```ruby
11
+ gem 'qaxqa'
12
+ ```
13
+
14
+ And then execute:
15
+
16
+ $ bundle
17
+
18
+ Or install it yourself as:
19
+
20
+ $ gem install qaxqa
21
+
22
+ ## Usage
23
+ 1. Put a file or files exported from Teslink (XML Files) into a directory
24
+ 2. Execute the command line:
25
+ $qaxqa migrate [FILE PATH OR DIRECTORY]
26
+ 3. The output files are in the folder where you run the command. Import these files (XLS) into HP Quality Center.
27
+
28
+ ## Development
29
+
30
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
31
+
32
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
33
+
34
+ ## Contributing
35
+
36
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/qaxqa. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
37
+
38
+
39
+ ## License
40
+
41
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
42
+
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "qaxqa"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/qaxqa ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'qaxqa'
4
+
5
+ Qaxqa::CLI.start( ARGV )
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,29 @@
1
+ require "qaxqa/testcase"
2
+ require "qaxqa/testsuite"
3
+ module Qaxqa
4
+
5
+ # Module class to set XML parsed attributes
6
+ class AllSuite
7
+
8
+ attr_accessor :testsuites, :doc
9
+
10
+ def initialize(path = nil)
11
+ @testsuites = []
12
+ @doc = nil
13
+ fetch! path unless path.nil?
14
+ end
15
+
16
+ private
17
+
18
+ def fetch!(path)
19
+ require 'nokogiri'
20
+ @doc = Nokogiri::XML(File.open(path))
21
+ @doc.xpath("//testsuite/testsuite/testsuite").each do |suite|
22
+ @testsuites << Testsuite.new(suite)
23
+ end
24
+ end
25
+
26
+ end
27
+
28
+ end
29
+
@@ -0,0 +1,90 @@
1
+ require 'byebug'
2
+ require 'qaxqa/all_suite'
3
+ module Qaxqa
4
+ # Migrate given xml files and outputs to XLS HP Quality Center format
5
+ class CLI::Migrate
6
+
7
+ def run(input)
8
+ validate_param input
9
+ require 'rubyXL'
10
+ files = supported_files_from input
11
+ files.each { |f| convert_entities f; to_hpqc f }
12
+ end
13
+
14
+ private
15
+
16
+ def to_hpqc(file)
17
+ extract file
18
+
19
+ workbook = RubyXL::Workbook.new
20
+ worksheet = workbook.worksheets[0]
21
+ set_header worksheet
22
+
23
+ workbook.write("spec/output.xlsx")
24
+ end
25
+
26
+ def extract(xml)
27
+ AllSuite.new(xml)
28
+ end
29
+
30
+ def set_header(ws)
31
+ ws.add_cell(0, 0, "Subject")
32
+ ws.add_cell(0, 1, "Test Name")
33
+ ws.add_cell(0, 2, "Description")
34
+ ws.add_cell(0, 3, "preconditions")
35
+ ws.add_cell(0, 4, "step_number")
36
+ ws.add_cell(0, 5, "actions")
37
+ ws.add_cell(0, 6, "expectedresults")
38
+ ws.add_cell(0, 7, "Type")
39
+ ws.sheet_data[0][0].change_font_bold(true)
40
+ ws.sheet_data[0][1].change_font_bold(true)
41
+ ws.sheet_data[0][2].change_font_bold(true)
42
+ ws.sheet_data[0][3].change_font_bold(true)
43
+ ws.sheet_data[0][4].change_font_bold(true)
44
+ ws.sheet_data[0][5].change_font_bold(true)
45
+ ws.sheet_data[0][6].change_font_bold(true)
46
+ ws.sheet_data[0][7].change_font_bold(true)
47
+ ws.change_column_width(0, 50)
48
+ ws.change_column_width(1, 70)
49
+ ws.change_column_width(2, 70)
50
+ ws.change_column_width(3, 70)
51
+ ws.change_column_width(4, 70)
52
+ ws.change_column_width(5, 70)
53
+ ws.change_column_width(6, 70)
54
+ ws.change_column_width(7, 70)
55
+ end
56
+
57
+ def convert_entities(path)
58
+ require 'htmlentities'
59
+ content = File.read(path)
60
+ content = HTMLEntities.new.decode content
61
+ File.open(path, "w") { |f| f.write content }
62
+ end
63
+
64
+ def supported_files_from(input)
65
+ supported_files = []
66
+ if File.directory?(input)
67
+ supported_files = Dir["#{input}*"]
68
+ else
69
+ supported_files << input
70
+ end
71
+
72
+ supported_files.delete_if{ |f| !is_xml?(f) }
73
+ raise "There is no file with supported format (XML)!\n"\
74
+ "Check the param, file or folder path and try again." if supported_files.empty?
75
+ return supported_files
76
+ end
77
+
78
+ def is_xml?(f)
79
+ File.extname(f) == ".xml"
80
+ end
81
+
82
+ def validate_param(input)
83
+ fail "File or directory does not exists!" unless file_or_dir_present? input
84
+ end
85
+
86
+ def file_or_dir_present?(p)
87
+ File.directory?(p) || File.exist?(p)
88
+ end
89
+ end
90
+ end
data/lib/qaxqa/cli.rb ADDED
@@ -0,0 +1,20 @@
1
+ require 'thor'
2
+
3
+ module Qaxqa
4
+ # Module to supports CLI commands
5
+ class CLI < Thor
6
+
7
+ desc "migrate INPUT", "Migrate folder or XML file to spreadsheet format"
8
+ long_desc <<-D
9
+
10
+ `migrate INPUT` Migrate a file or folder with XML files exported from TesLink to spreadsheet HP Quality Center format.
11
+
12
+ D
13
+ option :format
14
+ def migrate(input)
15
+ require "qaxqa/cli/migrate"
16
+ Migrate.new.run(input)
17
+ end
18
+ end
19
+
20
+ end
@@ -0,0 +1,10 @@
1
+ module Qaxqa
2
+
3
+ # Module class to set XML parsed attributes to a testcase object
4
+ class Testcase
5
+
6
+ attr_accessor :name
7
+
8
+ end
9
+
10
+ end
@@ -0,0 +1,20 @@
1
+ module Qaxqa
2
+
3
+ # Module class to set XML parsed attributes to a suitecase object
4
+ class Testsuite
5
+
6
+ attr_accessor :subject, :test_name
7
+
8
+ def initialize(doc = nil)
9
+ parse! doc unless doc.nil?
10
+ end
11
+
12
+ private
13
+
14
+ def parse!(doc)
15
+ @subject = doc.xpath("//testsuite/testsuite").first.attributes["name"].value
16
+ end
17
+
18
+ end
19
+
20
+ end
@@ -0,0 +1,3 @@
1
+ module Qaxqa
2
+ VERSION = "1.1.0"
3
+ end
data/lib/qaxqa.rb ADDED
@@ -0,0 +1,6 @@
1
+ require "qaxqa/version"
2
+ require "qaxqa/cli"
3
+
4
+ module Qaxqa
5
+
6
+ end
data/output.xlsx ADDED
Binary file
data/qaxqa.gemspec ADDED
@@ -0,0 +1,46 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'qaxqa/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "qaxqa"
8
+ spec.version = Qaxqa::VERSION
9
+ spec.authors = ["Ronaldo Possan"]
10
+ spec.email = ["ronaldo.possan@gmail.com"]
11
+
12
+ spec.summary = "Migration tool from TestLink to HP Quality center"
13
+ spec.description = "This tool migrate exported XML files from TestLink tool to spreadsheet input for HP Quality Center so migrate tests cases"
14
+ spec.homepage = "https://github.com/rpossan/qaxqa"
15
+ spec.license = "MIT"
16
+
17
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
19
+ if spec.respond_to?(:metadata)
20
+ #spec.metadata['allowed_push_host'] = 'http://mygemserver.com'"
21
+ else
22
+ raise "RubyGems 2.0 or newer is required to protect against " \
23
+ "public gem pushes."
24
+ end
25
+
26
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
27
+ f.match(%r{^(test|spec|features)/})
28
+ end
29
+ spec.bindir = "exe"
30
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
31
+ spec.require_paths = ["lib"]
32
+
33
+ spec.add_dependency "thor"
34
+ spec.add_dependency "htmlentities"
35
+ spec.add_dependency "nokogiri"
36
+ spec.add_dependency "rubyXL"
37
+
38
+ # Development
39
+ spec.add_development_dependency "simplecov"
40
+ spec.add_development_dependency "pry"
41
+ spec.add_development_dependency "pry-byebug"
42
+ spec.add_development_dependency "bundler", "~> 1.13"
43
+ spec.add_development_dependency "rake", "~> 10.0"
44
+ spec.add_development_dependency "rspec", "~> 3.0"
45
+
46
+ end
metadata ADDED
@@ -0,0 +1,206 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: qaxqa
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Ronaldo Possan
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2017-05-02 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: thor
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: htmlentities
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: nokogiri
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rubyXL
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: simplecov
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: pry
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: pry-byebug
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: bundler
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '1.13'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '1.13'
125
+ - !ruby/object:Gem::Dependency
126
+ name: rake
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: '10.0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: '10.0'
139
+ - !ruby/object:Gem::Dependency
140
+ name: rspec
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - "~>"
144
+ - !ruby/object:Gem::Version
145
+ version: '3.0'
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - "~>"
151
+ - !ruby/object:Gem::Version
152
+ version: '3.0'
153
+ description: This tool migrate exported XML files from TestLink tool to spreadsheet
154
+ input for HP Quality Center so migrate tests cases
155
+ email:
156
+ - ronaldo.possan@gmail.com
157
+ executables: []
158
+ extensions: []
159
+ extra_rdoc_files: []
160
+ files:
161
+ - ".gitignore"
162
+ - ".rspec"
163
+ - ".simplecov"
164
+ - ".travis.yml"
165
+ - CODE_OF_CONDUCT.md
166
+ - Gemfile
167
+ - LICENSE.txt
168
+ - README.md
169
+ - Rakefile
170
+ - bin/console
171
+ - bin/qaxqa
172
+ - bin/setup
173
+ - lib/qaxqa.rb
174
+ - lib/qaxqa/all_suite.rb
175
+ - lib/qaxqa/cli.rb
176
+ - lib/qaxqa/cli/migrate.rb
177
+ - lib/qaxqa/testcase.rb
178
+ - lib/qaxqa/testsuite.rb
179
+ - lib/qaxqa/version.rb
180
+ - output.xlsx
181
+ - qaxqa.gemspec
182
+ homepage: https://github.com/rpossan/qaxqa
183
+ licenses:
184
+ - MIT
185
+ metadata: {}
186
+ post_install_message:
187
+ rdoc_options: []
188
+ require_paths:
189
+ - lib
190
+ required_ruby_version: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - ">="
193
+ - !ruby/object:Gem::Version
194
+ version: '0'
195
+ required_rubygems_version: !ruby/object:Gem::Requirement
196
+ requirements:
197
+ - - ">="
198
+ - !ruby/object:Gem::Version
199
+ version: '0'
200
+ requirements: []
201
+ rubyforge_project:
202
+ rubygems_version: 2.5.1
203
+ signing_key:
204
+ specification_version: 4
205
+ summary: Migration tool from TestLink to HP Quality center
206
+ test_files: []