oxide 0.1.4 → 0.1.5

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: ec8b815ecbc965b1e6831bf20821bad606b4f8a2a81dbebc52f7028ead2d13e3
4
- data.tar.gz: 7f59ba6cff6c82a64865b70722cbdd48f72af974d3ccceb22b9ca19a5c8323a7
3
+ metadata.gz: e005ec9c83b33b96cefbd6c5cb79d437e3b02baa488c7dd769dfb1d4c0028772
4
+ data.tar.gz: de5d473413612317284e48f2f6297affa7d610ece36d2d1513f055d4840a753f
5
5
  SHA512:
6
- metadata.gz: c025b4ce94158d23a2fe4915858e7ea5ee2c34bf68d57168faea7dba1c725101368c529def76c46f76316c783061f63a011bf64cf459fe61b51f5fe70d289ad4
7
- data.tar.gz: 8dcb69a71ac4c093dd2f04c1b90ff9d931e6e7c93f8bf68e298329a310e657c685a3b229320e418fcb237562cfa7b1b9154a475ff2c60e2f2ca09e07e8c15c6e
6
+ metadata.gz: d79265feeb002584d62528af472bed8621b416866a03e1adf25c4f6b259c712794989b73b960d5b978b3c7c15c0b24d84d97d8e96b4105481006d2e43d5f3b86
7
+ data.tar.gz: b85daf09c0ce26532883f014dc3eca74c2a3ae45ec2b1833d573159ba376e9d2a6cdb1e24ec56acf8397b83ed274db7fbad6be2db65bffaf58bbc54c29a3ef61
data/.reek.yml ADDED
@@ -0,0 +1,4 @@
1
+ ---
2
+ detectors:
3
+ IrresponsibleModule:
4
+ enabled: false
data/.rubocop.yml CHANGED
@@ -2,6 +2,11 @@ require: rubocop-rspec
2
2
 
3
3
  AllCops:
4
4
  EnabledByDefault: true
5
+ TargetRubyVersion: 2.2
6
+
7
+ Metrics/BlockLength:
8
+ Exclude:
9
+ - oxide.gemspec
5
10
 
6
11
  Style/Copyright:
7
12
  Enabled: false
data/CODE_OF_CONDUCT.md CHANGED
@@ -23,7 +23,7 @@ include:
23
23
  Examples of unacceptable behavior by participants include:
24
24
 
25
25
  * The use of sexualized language or imagery and unwelcome sexual attention or
26
- advances
26
+ advances
27
27
  * Trolling, insulting/derogatory comments, and personal or political attacks
28
28
  * Public or private harassment
29
29
  * Publishing others' private information, such as a physical or electronic
@@ -67,8 +67,8 @@ members of the project's leadership.
67
67
 
68
68
  ## Attribution
69
69
 
70
- This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
- available at [http://contributor-covenant.org/version/1/4][version]
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
71
+ version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
72
72
 
73
73
  [homepage]: http://contributor-covenant.org
74
74
  [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- oxide (0.1.4)
4
+ oxide (0.1.5)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -39,7 +39,7 @@ GEM
39
39
  diff-lcs (>= 1.2.0, < 2.0)
40
40
  rspec-support (~> 3.8.0)
41
41
  rspec-support (3.8.0)
42
- rubocop (0.61.1)
42
+ rubocop (0.62.0)
43
43
  jaro_winkler (~> 1.5.1)
44
44
  parallel (~> 1.10)
45
45
  parser (>= 2.5, != 2.5.1.1)
data/README.md CHANGED
@@ -5,7 +5,8 @@
5
5
  [![Maintainability](https://api.codeclimate.com/v1/badges/021f4ab2eb6f6f4473b5/maintainability)](https://codeclimate.com/github/rdodson41/ruby-oxide/maintainability)
6
6
  [![Test Coverage](https://api.codeclimate.com/v1/badges/021f4ab2eb6f6f4473b5/test_coverage)](https://codeclimate.com/github/rdodson41/ruby-oxide/test_coverage)
7
7
 
8
- The `oxide` gem is an implementation of the [Oxide Programming Language](https://github.com/rdodson41/ruby-oxide) which is written in Ruby.
8
+ The `oxide` gem is an implementation of the [Oxide Programming Language](https://github.com/rdodson41/ruby-oxide)
9
+ which is written in Ruby.
9
10
 
10
11
  ## Installation
11
12
 
@@ -17,21 +18,29 @@ gem 'oxide'
17
18
 
18
19
  And then execute:
19
20
 
20
- $ bundle
21
+ bundle
21
22
 
22
23
  Or install it yourself as:
23
24
 
24
- $ gem install oxide
25
+ gem install oxide
25
26
 
26
27
  ## Development
27
28
 
28
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `bundle exec rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run
30
+ `bundle exec rake spec` to run the tests. You can also run `bin/console` for an
31
+ interactive prompt that will allow you to experiment.
29
32
 
30
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `lib/oxide/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).
33
+ To install this gem onto your local machine, run `bundle exec rake install`. To
34
+ release a new version, update the version number in `lib/oxide/version.rb`, and
35
+ then run `bundle exec rake release`, which will create a git tag for the version,
36
+ push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
31
37
 
32
38
  ## Contributing
33
39
 
34
- Bug reports and pull requests are welcome on GitHub at https://github.com/rdodson41/ruby-oxide. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
40
+ Bug reports and pull requests are welcome on GitHub at <https://github.com/rdodson41/ruby-oxide>.
41
+ This project is intended to be a safe, welcoming space for collaboration, and
42
+ contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org)
43
+ code of conduct.
35
44
 
36
45
  ## License
37
46
 
@@ -39,4 +48,5 @@ The gem is available as open source under the terms of the [MIT License](https:/
39
48
 
40
49
  ## Code of Conduct
41
50
 
42
- Everyone interacting in the Oxide project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/rdodson41/ruby-oxide/blob/master/CODE_OF_CONDUCT.md).
51
+ Everyone interacting in the Oxide project’s codebases, issue trackers, chat rooms
52
+ and mailing lists is expected to follow the [code of conduct](https://github.com/rdodson41/ruby-oxide/blob/master/CODE_OF_CONDUCT.md).
data/lib/oxide/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Oxide
2
- VERSION = '0.1.4'.freeze
2
+ VERSION = '0.1.5'.freeze
3
3
  end
data/oxide.gemspec CHANGED
@@ -16,11 +16,12 @@ Gem::Specification.new do |spec|
16
16
  # Specify which files should be added to the gem when it is released.
17
17
  # The `git ls-files -z` loads the files in the RubyGem that have been added
18
18
  # into git.
19
- spec.files = Dir.chdir(File.expand_path(__dir__)) do
20
- `git ls-files -z`.split("\x0").reject do |f|
21
- f.match(%r{^(test|spec|features)/})
19
+ spec.files =
20
+ Dir.chdir(File.expand_path(__dir__)) do
21
+ `git ls-files -z`.split("\x0").reject do |f|
22
+ f.match(%r{^(test|spec|features)/})
23
+ end
22
24
  end
23
- end
24
25
  spec.bindir = 'exe'
25
26
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
26
27
  spec.require_paths = ['lib']
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.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Richard E. Dodson
@@ -131,6 +131,7 @@ extensions: []
131
131
  extra_rdoc_files: []
132
132
  files:
133
133
  - ".gitignore"
134
+ - ".reek.yml"
134
135
  - ".rspec"
135
136
  - ".rubocop.yml"
136
137
  - ".simplecov"