testrail-rails 1.0.1

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: ad874d7e4261be2b22514691d5f0f2982708906a
4
+ data.tar.gz: be06dab2093f0f469f31d7d1d1484bedcc464281
5
+ SHA512:
6
+ metadata.gz: b3284eff656a67233838aff7bd31a5249e50e43a405a0e43cbdc362a436a54f92ceb19c9f518f8c2312b7895acbce22b815f9bc72ccd693c06ef5f0fc12b3443
7
+ data.tar.gz: aad28b1309234d8fadee7f393e44003f51d6f47acc1ae24e055812d3016b2597ff24042562d7fcf94f61c5d0c5c9384be77bc4ccac4d051944555863b1d8ace2
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.1.6
4
+ before_install: gem install bundler -v 1.10.6
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in testrail-rails.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Joshua Lockhart
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 all
13
+ 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 THE
21
+ SOFTWARE.
22
+
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 TODO: Write your name
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,40 @@
1
+ # Testrail::Rails
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/testrail/rails`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'testrail-rails'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install testrail-rails
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ 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.
30
+
31
+ 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).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/testrail-rails. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
36
+
37
+
38
+ ## License
39
+
40
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
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 "testrail/rails"
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/setup ADDED
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,119 @@
1
+ #
2
+ # TestRail API binding for Ruby (API v2, available since TestRail 3.0)
3
+ #
4
+ # Learn more:
5
+ #
6
+ # http://docs.gurock.com/testrail-api2/start
7
+ # http://docs.gurock.com/testrail-api2/accessing
8
+ #
9
+ # Copyright Gurock Software GmbH. See license.md for details.
10
+ #
11
+
12
+ require 'net/http'
13
+ require 'net/https'
14
+ require 'uri'
15
+ require 'json'
16
+ require "testrail/rails/version"
17
+
18
+ module TestRail
19
+ class APIClient
20
+ @url = ''
21
+ @user = ''
22
+ @password = ''
23
+
24
+ attr_accessor :user
25
+ attr_accessor :password
26
+
27
+ def initialize(base_url)
28
+ if !base_url.match(/\/$/)
29
+ base_url += '/'
30
+ end
31
+ @url = base_url + 'index.php?/api/v2/'
32
+ end
33
+
34
+ #
35
+ # Send Get
36
+ #
37
+ # Issues a GET request (read) against the API and returns the result
38
+ # (as Ruby hash).
39
+ #
40
+ # Arguments:
41
+ #
42
+ # uri The API method to call including parameters
43
+ # (e.g. get_case/1)
44
+ #
45
+ def send_get(uri)
46
+ _send_request('GET', uri, nil)
47
+ end
48
+
49
+ #
50
+ # Send POST
51
+ #
52
+ # Issues a POST request (write) against the API and returns the result
53
+ # (as Ruby hash).
54
+ #
55
+ # Arguments:
56
+ #
57
+ # uri The API method to call including parameters
58
+ # (e.g. add_case/1)
59
+ # data The data to submit as part of the request (as
60
+ # Ruby hash, strings must be UTF-8 encoded)
61
+ #
62
+ def send_post(uri, data)
63
+ _send_request('POST', uri, data)
64
+ end
65
+
66
+ private
67
+ def _send_request(method, uri, data)
68
+ request = handle_request(method, uri, data)
69
+ response = handle_connection(request)
70
+ result = parse_response(response)
71
+ handle_error(response, result) if response.code != '200'
72
+
73
+ result
74
+ end
75
+
76
+ def handle_request(method, uri, data)
77
+ url = URI.parse(@url + uri)
78
+
79
+ case method
80
+ when 'POST'
81
+ request = Net::HTTP::Post.new(url.path + '?' + url.query)
82
+ request.body = JSON.dump(data)
83
+ else
84
+ request = Net::HTTP::Get.new(url.path + '?' + url.query)
85
+ end
86
+
87
+ request.basic_auth(@user, @password)
88
+ request.add_field('Content-Type', 'application/json')
89
+
90
+ {:request => request, :url => url }
91
+ end
92
+
93
+
94
+ def handle_connection(request_method)
95
+ url = request_method[:url]
96
+ request = request_method[:request]
97
+
98
+ conn = Net::HTTP.new(url.host, url.port)
99
+ if url.scheme == 'https'
100
+ conn.use_ssl = true
101
+ conn.verify_mode = OpenSSL::SSL::VERIFY_NONE
102
+ end
103
+ conn.request(request)
104
+ end
105
+
106
+
107
+ def handle_error(response, result)
108
+ error = result && result.key?('error') ? '"' + result['error'] + '"' : 'No additional error message received'
109
+ raise APIError.new('TestRail API returned HTTP %s (%s)' % [response.code, error])
110
+ end
111
+
112
+ def parse_response(response)
113
+ response.body && !response.body.empty? ? result = JSON.parse(response.body) : result = {}
114
+ end
115
+ end
116
+
117
+ class APIError < StandardError
118
+ end
119
+ end
@@ -0,0 +1,19 @@
1
+ require 'test_rail/testrail'
2
+
3
+ module TestRail
4
+ class Client
5
+ attr_accessor :connection
6
+
7
+ def initialize(user,password)
8
+ @connection = TestRail::APIClient.new(url)
9
+ @connection.user = user
10
+ @connection.password = password
11
+ end
12
+
13
+ private
14
+
15
+ def url
16
+ APP_CONFIG[:testrail_url]
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,13 @@
1
+ module TestRail
2
+ class Project
3
+
4
+ def initialize(api_client)
5
+ @api_client = api_client
6
+ end
7
+
8
+ def find(project_name)
9
+ projects = @api_client.send_get('get_projects')
10
+ projects.select{ |x| x["name"]== project_name }.first
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,5 @@
1
+ module Testrail
2
+ module Rails
3
+ VERSION = "1.0.1"
4
+ end
5
+ end
@@ -0,0 +1,53 @@
1
+ module TestRail
2
+ class Release
3
+ BASE_DATE= Date.new(2015,3,24)
4
+
5
+ def initialize(api_client)
6
+ @api_client = api_client
7
+ end
8
+
9
+ def find(release_name, project)
10
+ milestone_path = "get_milestones/#{project["id"]}"
11
+ releases = @api_client.send_get(milestone_path)
12
+ releases.select{ |x| x["name"]== release_name }.first
13
+ end
14
+
15
+ def create(project)
16
+ release_path = "add_milestone/#{project["id"]}"
17
+ release_data = determine_release
18
+ @api_client.send_post(release_path,release_data)
19
+ end
20
+
21
+ def find_or_create(project)
22
+ release_data = determine_release
23
+ find(release_data["name"], project) || create(project)
24
+ end
25
+
26
+ private
27
+
28
+ def determine_release(days_per_sprint=14)
29
+ current_date = Date.today
30
+ days = (current_date - BASE_DATE).to_i
31
+ release_data = Hash.new
32
+
33
+ if days % days_per_sprint == 0
34
+ release_date = (current_date + days_per_sprint)
35
+ release_data = build_release_hash(release_date)
36
+ else
37
+ release_date = BASE_DATE + (days_per_sprint * (days/days_per_sprint).floor) + days_per_sprint
38
+ release_data = build_release_hash(release_date)
39
+ end
40
+
41
+ release_data
42
+ end
43
+
44
+ def build_release_hash(release_date)
45
+ release = Hash.new
46
+ release["name"] = "Sprint Release #{release_date.strftime("%d%m%y")}"
47
+ release["due_on"] = release_date.to_time.to_i
48
+ release["description"] = "Automated Release Milestone created for #{release_date} release"
49
+
50
+ release
51
+ end
52
+ end
53
+ end
@@ -0,0 +1,34 @@
1
+ module TestRail
2
+ class Section
3
+
4
+ def initialize(api_client)
5
+ @api_client = api_client
6
+ end
7
+
8
+ def find(section_name, suite, project)
9
+ section_path = "get_sections/#{project["id"]}&suite_id=#{suite["id"]}"
10
+ sections = @api_client.send_get(section_path)
11
+ sections.select{ |x| x["name"]== section_name}.first
12
+ end
13
+
14
+ def create(section_name, suite, project)
15
+ section_path = "add_section/#{project["id"]}"
16
+ section_data = build_section_hash(suite,section_name)
17
+ @api_client.send_post(section_path, section_data)
18
+ end
19
+
20
+ def find_or_create(section_name, suite, project)
21
+ find(section_name,suite,project) || create(section_name,suite,project)
22
+ end
23
+
24
+ private
25
+
26
+ def build_section_hash(suite,section_name)
27
+ section = Hash.new
28
+ section["name"] = section_name
29
+ section["suite_id"] = suite["id"]
30
+
31
+ section
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,24 @@
1
+ module TestRail
2
+ class Suite
3
+
4
+ def initialize(api_client)
5
+ @api_client = api_client
6
+ end
7
+
8
+ def find(suite_name, project)
9
+ suite_path = "get_suites/#{project["id"]}"
10
+ suites = @api_client.send_get(suite_path)
11
+ suites.select{ |x| x["name"]== suite_name }.first
12
+ end
13
+
14
+ def create(suite_name, project)
15
+ suite_path = "add_suite/#{project["id"]}"
16
+ @api_client.send_post(suite_path,{"name" => suite_name})
17
+ end
18
+
19
+ def find_or_create(suite_name, project)
20
+ find(suite_name, project) || create(suite_name, project)
21
+ end
22
+
23
+ end
24
+ end
@@ -0,0 +1,36 @@
1
+ require 'test_rail/release'
2
+
3
+ module TestRail
4
+ class TestCase
5
+
6
+ def initialize(api_client)
7
+ @api_client = api_client
8
+ @release = TestRail::Release.new(@api_client)
9
+ end
10
+
11
+ def find(test_name, suite, section, project)
12
+ test_path = "get_cases/#{project["id"]}&suite_id=#{suite["id"]}&section_id=#{section["id"]}"
13
+ tests = @api_client.send_get(test_path)
14
+ tests.select{ |x| x["title"]== test_name }.first
15
+ end
16
+
17
+ def create(test_name, section, project)
18
+ release = @release.find_or_create(project)
19
+ test_case_data = build_test_case_hash(release,test_name)
20
+ test_path = "add_case/#{section["id"]}"
21
+ @api_client.send_post(test_path, test_case_data)
22
+ end
23
+
24
+ def find_or_create(test_name, suite, section, project)
25
+ find(test_name, suite, section, project) || create(test_name, section, project)
26
+ end
27
+
28
+ def build_test_case_hash(release,test_name)
29
+ test_case = Hash.new
30
+ test_case["title"] = test_name
31
+ test_case["milestone_id"] = release["id"]
32
+
33
+ test_case
34
+ end
35
+ end
36
+ end
@@ -0,0 +1,45 @@
1
+ module TestRail
2
+ class TestResult
3
+
4
+ def initialize(api_client)
5
+ @api_client = api_client
6
+ end
7
+
8
+ def test_status(status)
9
+ case status
10
+ when 'passed'
11
+ 1
12
+ when 'failed'
13
+ 5
14
+ else
15
+ 2
16
+ end
17
+ end
18
+
19
+ def test_comment(status)
20
+ case status
21
+ when 'Passed'
22
+ "Automated Test Passed"
23
+ when 'Failed'
24
+ "Automated Test Failed"
25
+ end
26
+ end
27
+
28
+ def build_test_result_hash(result_hash)
29
+ results = Hash.new
30
+ results["status_id"] = test_status(result_hash["status"])
31
+ results["comment"] = test_comment(result_hash["status"])
32
+ results["assignedto_id"] = user_id
33
+
34
+ results
35
+ end
36
+
37
+ def find_user
38
+ @api_client.send_get("get_user_by_email&email=#{@api_client.user}")
39
+ end
40
+
41
+ def user_id
42
+ find_user["id"]
43
+ end
44
+ end
45
+ end
@@ -0,0 +1,54 @@
1
+ require 'test_rail/release'
2
+
3
+ module TestRail
4
+ class TestRun
5
+
6
+ def initialize(api_client)
7
+ @api_client = api_client
8
+ @release = TestRail::Release.new(api_client)
9
+ end
10
+
11
+ def find(test_run_name, project)
12
+ test_run_path = "get_runs/#{project["id"]}"
13
+ tests = @api_client.send_get(test_run_path)
14
+ tests.select{ |x| x["name"]== test_run_name }.first
15
+ end
16
+
17
+ def create(test_run_name, project, suite)
18
+ release = @release.find_or_create(project)
19
+ test_run_path = "add_run/#{project["id"]}"
20
+ test_run_data = build_test_run_hash(suite,test_run_name,release)
21
+ @api_client.send_post(test_run_path,test_run_data)
22
+ end
23
+
24
+ def find_or_create(project, suite)
25
+ find(test_run_name,project) || create(test_run_name, project, suite)
26
+ end
27
+
28
+ private
29
+
30
+ def test_run_name
31
+ "Auto Regression Test Run for: #{Date.today}"
32
+ end
33
+
34
+ def build_test_run_hash(suite,test_run_name,release)
35
+ test_run = Hash.new
36
+ test_run["name"] = test_run_name
37
+ test_run["suite_id"] = suite["id"]
38
+ test_run["description"] = "Testing for #{Time.at(release["due_on"]).to_date} release"
39
+ test_run["milestone_id"] = release["id"]
40
+ test_run["assignedto_id"] = user_id
41
+
42
+ test_run
43
+ end
44
+
45
+ def find_user
46
+ @api_client.send_get("get_user_by_email&email=#{@api_client.user}")
47
+ end
48
+
49
+ def user_id
50
+ find_user["id"]
51
+ end
52
+
53
+ end
54
+ end
@@ -0,0 +1,6 @@
1
+ lib_path = Pathname.new(__dir__).realpath.to_s
2
+
3
+ Dir.glob(lib_path + '/**/*.rb').
4
+ map { |path| path.gsub("#{lib_path}/", '').gsub('.rb', '') }.
5
+ reject { |path| path == 'testrail' }.
6
+ each { |path| require path }
@@ -0,0 +1,32 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'testrail/rails/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "testrail-rails"
8
+ spec.version = Testrail::Rails::VERSION
9
+ spec.authors = ["Josh Lockhart"]
10
+ spec.email = ["jlockhart@ncsasports.org"]
11
+
12
+ spec.summary = %q{Testrail API client for rspec integration tests}
13
+ spec.homepage = "https://github.com/joshlock3/testrail-rails"
14
+ spec.license = "MIT"
15
+
16
+ # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
17
+ # delete this section to allow pushing this gem to any host.
18
+ if spec.respond_to?(:metadata)
19
+ spec.metadata['allowed_push_host'] = "https://rubygems.org"
20
+ else
21
+ raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
22
+ end
23
+
24
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
25
+ spec.bindir = "exe"
26
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
27
+ spec.require_paths = ["lib"]
28
+
29
+ spec.add_development_dependency "bundler", "~> 1.10"
30
+ spec.add_development_dependency "rake", "~> 10.0"
31
+ spec.add_development_dependency "rspec"
32
+ end
metadata ADDED
@@ -0,0 +1,110 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: testrail-rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Josh Lockhart
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-09-11 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.10'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.10'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description:
56
+ email:
57
+ - jlockhart@ncsasports.org
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - ".rspec"
64
+ - ".travis.yml"
65
+ - CODE_OF_CONDUCT.md
66
+ - Gemfile
67
+ - LICENSE
68
+ - LICENSE.txt
69
+ - README.md
70
+ - Rakefile
71
+ - bin/console
72
+ - bin/setup
73
+ - lib/testrail/api_client.rb
74
+ - lib/testrail/client.rb
75
+ - lib/testrail/project.rb
76
+ - lib/testrail/rails/version.rb
77
+ - lib/testrail/release.rb
78
+ - lib/testrail/section.rb
79
+ - lib/testrail/suite.rb
80
+ - lib/testrail/test_case.rb
81
+ - lib/testrail/test_result.rb
82
+ - lib/testrail/test_run.rb
83
+ - lib/testrail/testrail.rb
84
+ - testrail-rails.gemspec
85
+ homepage: https://github.com/joshlock3/testrail-rails
86
+ licenses:
87
+ - MIT
88
+ metadata:
89
+ allowed_push_host: https://rubygems.org
90
+ post_install_message:
91
+ rdoc_options: []
92
+ require_paths:
93
+ - lib
94
+ required_ruby_version: !ruby/object:Gem::Requirement
95
+ requirements:
96
+ - - ">="
97
+ - !ruby/object:Gem::Version
98
+ version: '0'
99
+ required_rubygems_version: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ requirements: []
105
+ rubyforge_project:
106
+ rubygems_version: 2.4.8
107
+ signing_key:
108
+ specification_version: 4
109
+ summary: Testrail API client for rspec integration tests
110
+ test_files: []