testlink_rspec_utils 0.0.3 → 0.0.4

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: 55f85f5823332c6ea1b319fb11ca8423d43466d1
4
- data.tar.gz: cfe0366aa51e71d1ba445fa94079a22731580611
3
+ metadata.gz: 0e47a7bbb84eb053d437bcb6bde15225ffcdfaf6
4
+ data.tar.gz: 63b9a4426a243b5942dd823f3aa60bed58c7efee
5
5
  SHA512:
6
- metadata.gz: 0072f6616521a711174f2b60b3275e1dd48f50ed50dd0b7d37071fff19a8935f643d9b17c5b7580e7124f0e6ec4ba1674f569aa48c80e69160507531e132b0db
7
- data.tar.gz: 5914fe6e44d74a2dcfd3558a3a4129376c7525d6f5d2a06aabd071b1ab540aa9982759318868363f7da54ca7551e5a1180194869133198eaa9cd14509f3be757
6
+ metadata.gz: 8b0704337c5f578412df584755effd1d783eb6ecf64a2b9921d863e91c9dbf8c7ad5758ac9819daaa3957e2c510639642af6652bb35cf7c7f01a52caec084eea
7
+ data.tar.gz: f75899f85c2ad62b0ffda7b10167d5e74f711d58862c3349621cb3ca7387f073a4591317782850d0702bea842978e290c118064107cbead61e2e8d303e548797
data/CHANGELOG.md ADDED
@@ -0,0 +1,4 @@
1
+ # Changelog
2
+
3
+ ## 0.0.4
4
+ - fix xml simple dep
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # TestlinkRspecUtils
2
2
 
3
- TODO: Write a gem description
3
+ Testlink RPspec Utils offers tools for easing glewing TestLink and Rspec to together. The reason why we wrote this is we wanted to integrate TestLink, RSpec and Jenkins in our development workflow.
4
4
 
5
5
  ## Installation
6
6
 
@@ -20,11 +20,18 @@ Or install it yourself as:
20
20
 
21
21
  ## Usage
22
22
 
23
- TODO: Write usage instructions here
23
+ ```
24
+ Usage: tlreq2spec -f [input file] -o [output file]
25
+ -a application string, Application String
26
+ --application
27
+ -p, --project project string Project String
28
+ -f, --file RequirementsXML TestLinkRequirementsXML file
29
+ -o, --out specfilename output spec file
30
+ ```
24
31
 
25
32
  ## Contributing
26
33
 
27
- 1. Fork it ( https://github.com/[my-github-username]/testlink_rspec_utils/fork )
34
+ 1. Fork it ( https://github.com/mipmip/testlink_rspec_utils/fork )
28
35
  2. Create your feature branch (`git checkout -b my-new-feature`)
29
36
  3. Commit your changes (`git commit -am 'Add some feature'`)
30
37
  4. Push to the branch (`git push origin my-new-feature`)
@@ -1,3 +1,3 @@
1
1
  module TestlinkRspecUtils
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
@@ -21,5 +21,6 @@ Gem::Specification.new do |spec|
21
21
  spec.add_development_dependency "bundler", "~> 1.7"
22
22
  spec.add_development_dependency "rake", "~> 10.0"
23
23
 
24
- #spec.add_dependency "optparse"
24
+ spec.add_dependency "xml-simple"
25
+ spec.add_dependency "erb"
25
26
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: testlink_rspec_utils
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pim Snel
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-03 00:00:00.000000000 Z
11
+ date: 2014-11-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -38,6 +38,34 @@ dependencies:
38
38
  - - ~>
39
39
  - !ruby/object:Gem::Version
40
40
  version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: xml-simple
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: erb
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'
41
69
  description: Convert TestLink requirements xml to rspec cases
42
70
  email:
43
71
  - pim@lingewoud.nl
@@ -47,6 +75,7 @@ extensions: []
47
75
  extra_rdoc_files: []
48
76
  files:
49
77
  - .gitignore
78
+ - CHANGELOG.md
50
79
  - Gemfile
51
80
  - LICENSE
52
81
  - LICENSE.txt