cucumber_junit_to_json 0.1.0 → 0.1.1

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: e055dbdeb6bef8126bb5704abfdaf6c60d884b38
4
- data.tar.gz: a123979749fb783ac8aaf228e564df6706335ce4
3
+ metadata.gz: 05d37d71c4c73d30a8a7b489ef761b1ecfaeb454
4
+ data.tar.gz: 70bad808be400a4ca4bde551a0ba1928e0bf3bbf
5
5
  SHA512:
6
- metadata.gz: 33a7662c3a61a25edb8528662e3fbabba19c858c078c27362b540d29c070f5f6cc59cfa7b6806c7ab6156e1a6d16dff85fdec5638948bea6fcc6c9523777bb3b
7
- data.tar.gz: 8e3d206280732deae37770352300447fccec1e71ae0f3a7c43f3da4b8f7608f299644ab1a7650fc7ba04fe0ea6747ccb0dee65daaebd26b054440096a658e819
6
+ metadata.gz: ea63f3519bd681f6a9b22c9e507cf4c18801180d65d1d8ad4fe04618a2b60f9c683a973caeb7d31f5ecfd486fad99eb7c98f48e53e96c10d10defd50c0df4ae2
7
+ data.tar.gz: 28045396b0d77f79748f819af9422d11af23b98353a891f5bb68fb1df1e84cee200a87c58d0ba1825c8589959e5ca5789963eb45b67318de926eb710a6311530
data/README.md CHANGED
@@ -45,7 +45,7 @@ cucumber_junit_to_json --help
45
45
 
46
46
  ## Development
47
47
 
48
- After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
48
+ After checking out the repo, run `bundle install` to install dependencies
49
49
 
50
50
  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).
51
51
 
@@ -2,5 +2,5 @@
2
2
 
3
3
  # Cucumber Junit to Json version module
4
4
  module CucumberJunitToJson
5
- VERSION = '0.1.0'
5
+ VERSION = '0.1.1'
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cucumber_junit_to_json
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Voke Ransom Anighoro
@@ -98,9 +98,7 @@ description: Converts cucumber JUNIT xml reports to cucumber JSON format
98
98
  email:
99
99
  - ransom4real@gmail.com
100
100
  executables:
101
- - console
102
101
  - cucumber_junit_to_json
103
- - setup
104
102
  extensions: []
105
103
  extra_rdoc_files: []
106
104
  files:
@@ -111,9 +109,7 @@ files:
111
109
  - LICENSE.txt
112
110
  - README.md
113
111
  - Rakefile
114
- - bin/console
115
112
  - bin/cucumber_junit_to_json
116
- - bin/setup
117
113
  - cucumber_junit_to_json.gemspec
118
114
  - lib/cucumber_junit_to_json.rb
119
115
  - lib/cucumber_junit_to_json/app.rb
data/bin/console DELETED
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require "cucumber_junit_to_json"
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 DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here