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 +4 -4
- data/.reek.yml +4 -0
- data/.rubocop.yml +5 -0
- data/CODE_OF_CONDUCT.md +3 -3
- data/Gemfile.lock +2 -2
- data/README.md +17 -7
- data/lib/oxide/version.rb +1 -1
- data/oxide.gemspec +5 -4
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e005ec9c83b33b96cefbd6c5cb79d437e3b02baa488c7dd769dfb1d4c0028772
|
|
4
|
+
data.tar.gz: de5d473413612317284e48f2f6297affa7d610ece36d2d1513f055d4840a753f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d79265feeb002584d62528af472bed8621b416866a03e1adf25c4f6b259c712794989b73b960d5b978b3c7c15c0b24d84d97d8e96b4105481006d2e43d5f3b86
|
|
7
|
+
data.tar.gz: b85daf09c0ce26532883f014dc3eca74c2a3ae45ec2b1833d573159ba376e9d2a6cdb1e24ec56acf8397b83ed274db7fbad6be2db65bffaf58bbc54c29a3ef61
|
data/.reek.yml
ADDED
data/.rubocop.yml
CHANGED
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],
|
|
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
|
+
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.
|
|
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
|
[](https://codeclimate.com/github/rdodson41/ruby-oxide/maintainability)
|
|
6
6
|
[](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)
|
|
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
|
-
|
|
21
|
+
bundle
|
|
21
22
|
|
|
22
23
|
Or install it yourself as:
|
|
23
24
|
|
|
24
|
-
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
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 =
|
|
20
|
-
|
|
21
|
-
|
|
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
|
+
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"
|