hiptest-publisher 0.12.0 → 0.13.0

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: aaf797bb90915b33c0fcc31a91db0b9c08fc0719
4
- data.tar.gz: 5c9da89ee5917ae6dafd57b327489adb97f235b8
3
+ metadata.gz: 1f973be3f512aeaeb602fff2b338128ac378d828
4
+ data.tar.gz: 0653c5dde8296c14f9afe566fcc1da3933db8b21
5
5
  SHA512:
6
- metadata.gz: 484a6f05e90199d760a72ecb04b7afb65d604eb4a2d9e9bcd8caf89f1288868b7654303ace2e55467ecf1b6580139f5519980bda54d82112b27b4c6bee2058e0
7
- data.tar.gz: b9aa082407bacefdc575d59129ad50a21ed915311f4cad50710dbe05fce5aa6dad38d9dd74591eedeffe5c429af8f91adfe5c727e297bee333ea357e9fad1f93
6
+ metadata.gz: ef37dddc970dec19e192b487c303eec3aea2103fdc1071798032dafb5b825b52b11f33cbeafab94135cfa1a4ef22e0ce3a06a24a3c1d7ba011892aa14613a5b2
7
+ data.tar.gz: 24b25a7bb65b627a44dfa5683badd3186b12d734f034c5f3a9062f774a4a280ae8bb22190cfa10a988c7d02da5a555330ab004ded65f929083b797bc55f90074
data/README.md CHANGED
@@ -12,6 +12,28 @@ Hiptest Publisher
12
12
  Installing
13
13
  ----------
14
14
 
15
+ ### Docker Installation
16
+
17
+ You can build the docker image or use an already built docker image for hiptest/hiptest-publisher.
18
+
19
+ You can use the docker image just like the command line installation. The image includes a script that runs
20
+ docker with the necessary options. Copy the script from the image using these commands:
21
+
22
+ ```shell
23
+ cid=$(docker create hiptest/hiptest-publisher) &&
24
+ docker cp $cid:/usr/src/app/bin/hiptest-publisher-docker hiptest-publisher &&
25
+ docker rm $cid > /dev/null
26
+ ```
27
+
28
+ Now you can use `hiptest-publisher` in order to run the program.
29
+
30
+ Suggestions for installation of the hiptest-publisher script:
31
+
32
+ * Copy hiptest-publisher to a path directory (e.g. ~/bin or /usr/local/bin).
33
+ * Create an alias for hiptest-publisher: `alias 'hiptest-publisher=/path/to/hiptest-publisher'`
34
+
35
+ ### Local Installation
36
+
15
37
  You need to have [Ruby installed on your machine](https://www.ruby-lang.org/en/installation/). You can then install it using gem:
16
38
 
17
39
  ```shell
@@ -19,6 +19,7 @@ module Hiptest
19
19
  :normalize_with_dashes,
20
20
  :normalize_with_spaces,
21
21
  :underscore,
22
+ :capitalize,
22
23
  :camelize,
23
24
  :camelize_lower,
24
25
  :camelize_upper,
@@ -1 +1 @@
1
- {{{ underscore rendered_children.name }}}
1
+ {{{ rendered_children.name }}}
@@ -0,0 +1 @@
1
+ {{capitalize rendered_children.value }}
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hiptest-publisher
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hiptest R&D
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-05-13 00:00:00.000000000 Z
11
+ date: 2016-05-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: colorize
@@ -214,7 +214,7 @@ dependencies:
214
214
  requirements:
215
215
  - - ">="
216
216
  - !ruby/object:Gem::Version
217
- version: 2.0.1
217
+ version: 2.1.1
218
218
  - - "~>"
219
219
  - !ruby/object:Gem::Version
220
220
  version: '2.0'
@@ -224,7 +224,7 @@ dependencies:
224
224
  requirements:
225
225
  - - ">="
226
226
  - !ruby/object:Gem::Version
227
- version: 2.0.1
227
+ version: 2.1.1
228
228
  - - "~>"
229
229
  - !ruby/object:Gem::Version
230
230
  version: '2.0'
@@ -474,6 +474,7 @@ files:
474
474
  - lib/templates/python/argument.hbs
475
475
  - lib/templates/python/assign.hbs
476
476
  - lib/templates/python/binaryexpression.hbs
477
+ - lib/templates/python/booleanliteral.hbs
477
478
  - lib/templates/python/call.hbs
478
479
  - lib/templates/python/dataset.hbs
479
480
  - lib/templates/python/dict.hbs
@@ -591,7 +592,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
591
592
  version: '0'
592
593
  requirements: []
593
594
  rubyforge_project:
594
- rubygems_version: 2.4.8
595
+ rubygems_version: 2.5.1
595
596
  signing_key:
596
597
  specification_version: 4
597
598
  summary: Export your tests from Hiptest into executable tests.