oxide 0.1.2 → 0.1.3

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f31886810e5786cb766e563629b60592242ea1794f262e140114b9337df125cf
4
- data.tar.gz: 983969a021df532dce1de84e42fdd5ec8347e49180b19c539127484bbc9ef080
3
+ metadata.gz: 17cb31ace64d7d1a46f70b23e9a073212f3bcb3e8842e4f4224da6cff25e296b
4
+ data.tar.gz: '0965751e0b4897431841da431590440f154842e7eb5bc4662cda63018a4eb051'
5
5
  SHA512:
6
- metadata.gz: c81bd0187bf96efc7644bc1467443869af50f83f965af1cbc65de9f1aae2e00b8d079f3d2548ee728a0f9995725e46b82647ec4799a8aea7fa75821201f7afc1
7
- data.tar.gz: 1a2fd0a12d2d1bf13f1fbd84f60c1764ba4bb4cbb9a2b687f12b2fedf398f4b543f1c53388fc7f439070c0ba719a55e07f8ab124f19c21f34c0b76a5b5563a6c
6
+ metadata.gz: 1d2767ef1954647b024472d8b833f3f8791223c3845e23928f43f5213be66ea3f4d02b61b17ee698f3021c3dfedc41e3dac2c08a2db7aa5be8b6027d07079861
7
+ data.tar.gz: e5058462b086903f674203f877859f16c64046935980dff3771d41adf4da5297b5183697b8cb90fd68be06c1b495961b3b15a3520fa17abb35497dff20ec8400
data/.gitignore CHANGED
@@ -8,4 +8,4 @@
8
8
  /tmp/
9
9
 
10
10
  # rspec failure tracking
11
- .rspec_status
11
+ spec/examples.txt
data/.rspec CHANGED
@@ -1,3 +1 @@
1
- --format documentation
2
- --color
3
1
  --require spec_helper
data/.simplecov ADDED
@@ -0,0 +1 @@
1
+ SimpleCov.start
data/.travis.yml CHANGED
@@ -9,3 +9,9 @@ rvm:
9
9
  - 2.4
10
10
  - 2.5
11
11
  before_install: gem install bundler -v 1.17.3
12
+ before_script:
13
+ - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
14
+ - chmod +x ./cc-test-reporter
15
+ - ./cc-test-reporter before-build
16
+ after_script:
17
+ - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
data/Gemfile.lock CHANGED
@@ -1,12 +1,14 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- oxide (0.1.2)
4
+ oxide (0.1.3)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
9
  diff-lcs (1.3)
10
+ docile (1.3.1)
11
+ json (2.1.0)
10
12
  rake (10.5.0)
11
13
  rspec (3.8.0)
12
14
  rspec-core (~> 3.8.0)
@@ -21,6 +23,11 @@ GEM
21
23
  diff-lcs (>= 1.2.0, < 2.0)
22
24
  rspec-support (~> 3.8.0)
23
25
  rspec-support (3.8.0)
26
+ simplecov (0.16.1)
27
+ docile (~> 1.1)
28
+ json (>= 1.8, < 3)
29
+ simplecov-html (~> 0.10.0)
30
+ simplecov-html (0.10.2)
24
31
 
25
32
  PLATFORMS
26
33
  ruby
@@ -30,6 +37,7 @@ DEPENDENCIES
30
37
  oxide!
31
38
  rake (~> 10.0)
32
39
  rspec (~> 3.0)
40
+ simplecov
33
41
 
34
42
  BUNDLED WITH
35
43
  1.17.3
data/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/oxide.svg)](https://badge.fury.io/rb/oxide)
4
4
  [![Build Status](https://travis-ci.org/rdodson41/ruby-oxide.svg?branch=master)](https://travis-ci.org/rdodson41/ruby-oxide)
5
+ [![Maintainability](https://api.codeclimate.com/v1/badges/021f4ab2eb6f6f4473b5/maintainability)](https://codeclimate.com/github/rdodson41/ruby-oxide/maintainability)
6
+ [![Test Coverage](https://api.codeclimate.com/v1/badges/021f4ab2eb6f6f4473b5/test_coverage)](https://codeclimate.com/github/rdodson41/ruby-oxide/test_coverage)
5
7
 
6
8
  Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/oxide`. To experiment with that code, run `bin/console` for an interactive prompt.
7
9
 
data/lib/oxide/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Oxide
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
data/oxide.gemspec CHANGED
@@ -25,4 +25,5 @@ Gem::Specification.new do |spec|
25
25
  spec.add_development_dependency "bundler", "~> 1.17"
26
26
  spec.add_development_dependency "rake", "~> 10.0"
27
27
  spec.add_development_dependency "rspec", "~> 3.0"
28
+ spec.add_development_dependency "simplecov"
28
29
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oxide
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Richard E. Dodson
@@ -52,6 +52,20 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '3.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: simplecov
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
55
69
  description:
56
70
  email:
57
71
  - richard.elias.dodson@gmail.com
@@ -62,6 +76,7 @@ extra_rdoc_files: []
62
76
  files:
63
77
  - ".gitignore"
64
78
  - ".rspec"
79
+ - ".simplecov"
65
80
  - ".travis.yml"
66
81
  - CODE_OF_CONDUCT.md
67
82
  - Gemfile