testlink_rspec_utils 0.0.1 → 0.0.2

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: cde7ed48a5fcb0c67c3530af2236ddc585e445c3
4
- data.tar.gz: ea5e44a1ab5b2b9af9af269f6a8118543d23442a
3
+ metadata.gz: 7c2cf1e3e24c02a181796b463e8a3758fd768b5b
4
+ data.tar.gz: 78e4997e469573e2aa492828399f9df408d9c8e6
5
5
  SHA512:
6
- metadata.gz: 50baf5fafa7f49c2ec3d82e47b1995be794c9aa2b0983c41df9bb141df759e7873cfe762e4fa405b69288e5b282c3b264ea3d03852b5419c663be3988b4369cc
7
- data.tar.gz: 3bfa269e4ff5f463c078cebfee25757a3cc0efa747673757753e96e6403a299c4b4519b7c5e4522aab3ed7ffec0c5131d61bde1af861690d7ce7f00e44c10257
6
+ metadata.gz: cc046619612d12e83556d9d02bfad31313378375f5b98ee870e22aa443587e1511d03cb394a0d49b880b2e28e41a789d425cc73ec39e2e0963c6078283b06742
7
+ data.tar.gz: dcfc7796ee338296539d49753a423671536bd4d519e557f9eb66b31fe186813da62ce92732946def76a371f3e0da5c46b044de486e384fc48486c54e8e1b8221
data/.gitignore CHANGED
@@ -1,14 +1,35 @@
1
- /.bundle/
2
- /.yardoc
3
- /Gemfile.lock
4
- /_yardoc/
1
+
2
+ *.rbc
3
+ /.config
5
4
  /coverage/
6
- /doc/
5
+ /InstalledFiles
7
6
  /pkg/
8
7
  /spec/reports/
8
+ /test/tmp/
9
+ /test/version_tmp/
9
10
  /tmp/
10
- *.bundle
11
- *.so
12
- *.o
13
- *.a
14
- mkmf.log
11
+
12
+ ## Specific to RubyMotion:
13
+ .dat*
14
+ .repl_history
15
+ build/
16
+
17
+ ## Documentation cache and generated files:
18
+ /.yardoc/
19
+ /_yardoc/
20
+ /doc/
21
+ /rdoc/
22
+
23
+ ## Environment normalisation:
24
+ /.bundle/
25
+ /lib/bundler/man/
26
+
27
+ # for a library or gem, you might want to ignore these files since the code is
28
+ # intended to run in multiple environments; otherwise, check them in:
29
+ # Gemfile.lock
30
+ # .ruby-version
31
+ # .ruby-gemset
32
+
33
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
34
+ .rvmrc
35
+
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2014 Pim Snel
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/bin/tlreq2spec CHANGED
@@ -25,8 +25,7 @@ OptionParser.new do |opts|
25
25
 
26
26
  end.parse!
27
27
 
28
- p options
29
- p ARGV
30
28
 
31
29
  convert = TestlinkRspecUtils::Convert.new
32
- convert.requirements_to_cases(options['application'],options['project'], options['filein'], options['fileout'])
30
+ convert.requirements_to_cases(options['application'],options['project'], options['infile'], options['outfile'])
31
+
@@ -1,3 +1,3 @@
1
1
  module TestlinkRspecUtils
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: testlink_rspec_utils
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pim Snel
@@ -48,6 +48,7 @@ extra_rdoc_files: []
48
48
  files:
49
49
  - .gitignore
50
50
  - Gemfile
51
+ - LICENSE
51
52
  - LICENSE.txt
52
53
  - README.md
53
54
  - Rakefile