test_linker 0.1.1 → 1.0.0
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.
- data/.infinity_test +7 -0
- data/.rspec +1 -1
- data/ChangeLog.rdoc +26 -0
- data/Gemfile +4 -6
- data/README.rdoc +35 -34
- data/Rakefile +39 -36
- data/features/step_definitions/get_info_steps.rb +12 -12
- data/features/support/env.rb +8 -4
- data/lib/core_ext/hash_patch.rb +24 -0
- data/lib/core_ext/xmlrpc_client_patch.rb +7 -0
- data/lib/test_linker.rb +42 -9
- data/lib/test_linker/helpers.rb +68 -81
- data/lib/test_linker/version.rb +1 -1
- data/lib/test_linker/wrapper.rb +147 -158
- data/spec/core_ext/xmlrpc_client_patch_spec.rb +16 -0
- data/spec/spec_helper.rb +23 -5
- data/spec/test_linker/wrapper_spec.rb +168 -0
- data/spec/test_linker_spec.rb +26 -0
- data/test_linker.gemspec +32 -43
- metadata +148 -119
- data/gemspec.yml +0 -25
data/gemspec.yml
DELETED
@@ -1,25 +0,0 @@
|
|
1
|
-
name: test_linker
|
2
|
-
summary: "An interface to the TestLink XMLRPC API"
|
3
|
-
description:
|
4
|
-
This is a Ruby wrapper around the TestLink XMLRPC API, thus allowing access to
|
5
|
-
your TestLink test projects, plans, cases, and results using Ruby. We've added
|
6
|
-
a few helper methods as well to allow for getting at more of your data a little
|
7
|
-
easier. This supports TestLink APIs 1.0 Beta 5 (from TestLink 1.8.x) and 1.0
|
8
|
-
(from TestLink 1.9.x).
|
9
|
-
license: MIT
|
10
|
-
authors: Steve Loveless, Randy Stoller, Sujin Philip, Vikram Raina
|
11
|
-
email: steve.loveless@gmail.com
|
12
|
-
homepage: http://rubygems.org/gems/test_linker
|
13
|
-
has_yard: true
|
14
|
-
dependencies:
|
15
|
-
versionomy: ~> 0.4.0
|
16
|
-
|
17
|
-
development_dependencies:
|
18
|
-
bundler: ~> 1.0.0
|
19
|
-
cucumber: ~> 0.10.0
|
20
|
-
jeweler: ~> 1.5.0
|
21
|
-
ore: ~> 0.7.2
|
22
|
-
ore-core: ~> 0.1.4
|
23
|
-
rspec: ~> 2.5
|
24
|
-
simplecov: >= 0.4.0
|
25
|
-
yard: ~> 0.6.0
|