oxide 0.1.9 → 0.1.10

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
  SHA256:
3
- metadata.gz: 2546e281c2e02b4c7f7bb4f4ee71ac99d0bbe6a264cd1ac48fbc08155f346b29
4
- data.tar.gz: b4403f5b1de59d3387bf76cc242ba97218fca8e021567022aa9505b227969a4c
3
+ metadata.gz: a640125dcbae1f3c094b0b183f976a616d7d16756e402c90401e0fb296180ca4
4
+ data.tar.gz: ba6d2ab3a1066e610cc01ff667715a59faecdcdff0621cb4e89053165a711ef8
5
5
  SHA512:
6
- metadata.gz: e82c810f7368c4bc79ab23dc3777fec159319b0c995c89446c61c0d10d86c2d53edf9db4e088bbc76669d1fa488310bcba9ecbf5c5a26715c8665ce8f9068368
7
- data.tar.gz: 7f427610dbb1516e24b99b60223a3420b51ebb2542889608c660f8c4b1c57f8b3de453280468dce3f331f4e6d304d7f625223cd9065a711cf0b8f3eef7dcc6ee
6
+ metadata.gz: '0779c69500c21a49c385d2adacfca1b42effc5e3e0be83e34be93ac80cb0552a26343c08cdba18f7fbd4fcef4b4a53e24417220f336975ba67b0f405ec4f3339'
7
+ data.tar.gz: 790c634ef710a01c3827a12336e214aae2daea9d8ce975ab5fe8cd2194b173cc089b3ae85e83a2345fd45601081affb39be54826fe613b2c335a6c0f293e37dd
@@ -0,0 +1,20 @@
1
+ name: Ruby
2
+
3
+ on: [push]
4
+
5
+ jobs:
6
+ build:
7
+
8
+ runs-on: ubuntu-latest
9
+
10
+ steps:
11
+ - uses: actions/checkout@v2
12
+ - name: Set up Ruby 2.6
13
+ uses: actions/setup-ruby@v1
14
+ with:
15
+ ruby-version: 2.6.x
16
+ - name: Build and test with Rake
17
+ run: |
18
+ gem install bundler
19
+ bundle install --jobs 4 --retry 3
20
+ bundle exec rake
data/.gitignore CHANGED
@@ -6,6 +6,11 @@
6
6
  /pkg/
7
7
  /spec/reports/
8
8
  /tmp/
9
+ *.bundle
10
+ *.so
11
+ *.o
12
+ *.a
13
+ mkmf.log
9
14
 
10
15
  # rspec failure tracking
11
16
  spec/examples.txt
@@ -2,7 +2,7 @@ require: rubocop-rspec
2
2
 
3
3
  AllCops:
4
4
  EnabledByDefault: true
5
- TargetRubyVersion: 2.2
5
+ TargetRubyVersion: 2.3
6
6
 
7
7
  Metrics/BlockLength:
8
8
  Exclude:
@@ -10,3 +10,6 @@ Metrics/BlockLength:
10
10
 
11
11
  Style/Copyright:
12
12
  Enabled: false
13
+
14
+ Style/MissingElse:
15
+ Enabled: false
@@ -1,14 +1,12 @@
1
1
  ---
2
- sudo: false
3
2
  language: ruby
4
3
  cache: bundler
5
4
  rvm:
6
- - 2.2
7
5
  - 2.3
8
6
  - 2.4
9
7
  - 2.5
10
8
  - 2.6
11
- before_install: gem install bundler -v 1.17.3
9
+ before_install: gem install bundler -v 2.1.4
12
10
  before_script:
13
11
  - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
14
12
  - chmod +x ./cc-test-reporter
@@ -22,8 +22,7 @@ include:
22
22
 
23
23
  Examples of unacceptable behavior by participants include:
24
24
 
25
- * The use of sexualized language or imagery and unwelcome sexual attention or
26
- advances
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or advances
27
26
  * Trolling, insulting/derogatory comments, and personal or political attacks
28
27
  * Public or private harassment
29
28
  * Publishing others' private information, such as a physical or electronic
@@ -37,11 +36,11 @@ Project maintainers are responsible for clarifying the standards of acceptable
37
36
  behavior and are expected to take appropriate and fair corrective action in
38
37
  response to any instances of unacceptable behavior.
39
38
 
40
- Project maintainers have the right and responsibility to remove, edit, or reject
41
- comments, commits, code, wiki edits, issues, and other contributions that are
42
- not aligned to this Code of Conduct, or to ban temporarily or permanently any
43
- contributor for other behaviors that they deem inappropriate, threatening,
44
- offensive, or harmful.
39
+ Project maintainers have the right and responsibility to remove, edit, or
40
+ reject comments, commits, code, wiki edits, issues, and other contributions
41
+ that are not aligned to this Code of Conduct, or to ban temporarily or
42
+ permanently any contributor for other behaviors that they deem inappropriate,
43
+ threatening, offensive, or harmful.
45
44
 
46
45
  ## Scope
47
46
 
@@ -69,7 +68,8 @@ members of the project's leadership.
69
68
  ## Attribution
70
69
 
71
70
  This Code of Conduct is adapted from the [Contributor Covenant][homepage],
72
- version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
71
+ version 1.4, available at
72
+ [https://contributor-covenant.org/version/1/4][version]
73
73
 
74
- [homepage]: http://contributor-covenant.org
75
- [version]: http://contributor-covenant.org/version/1/4/
74
+ [homepage]: https://contributor-covenant.org
75
+ [version]: https://contributor-covenant.org/version/1/4/
data/Gemfile CHANGED
@@ -1,6 +1,31 @@
1
- source('https://rubygems.org')
1
+ # frozen_string_literal: true
2
2
 
3
- git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
3
+ source('https://rubygems.org')
4
4
 
5
5
  # Specify your gem's dependencies in oxide.gemspec
6
6
  gemspec
7
+
8
+ # A runtime developer console and IRB alternative with powerful introspection
9
+ # capabilities.
10
+ gem('pry')
11
+
12
+ # A make-like build utility for Ruby.
13
+ gem('rake', '>= 12.3.3')
14
+
15
+ # Provide a standard and simplified way to build and package Ruby C and Java
16
+ # extensions using Rake as glue.
17
+ gem('rake-compiler')
18
+
19
+ # RSpec meta-gem that depends on the other components
20
+ gem('rspec', '~> 3.0')
21
+
22
+ # A Ruby static code analyzer and formatter, based on the community Ruby style
23
+ # guide.
24
+ gem('rubocop', require: false)
25
+
26
+ # Code style checking for RSpec files
27
+ gem('rubocop-rspec', require: false)
28
+
29
+ # Code coverage for Ruby 1.9+ with a powerful configuration library and
30
+ # automatic merging of coverage across test suites
31
+ gem('simplecov', require: false)
@@ -1,75 +1,29 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- oxide (0.1.9)
4
+ oxide (0.1.10)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
- abstract_type (0.0.7)
10
- adamantium (0.2.0)
11
- ice_nine (~> 0.11.0)
12
- memoizable (~> 0.4.0)
13
- anima (0.3.0)
14
- abstract_type (~> 0.0.7)
15
- adamantium (~> 0.2)
16
- equalizer (~> 0.0.11)
17
9
  ast (2.4.0)
18
- byebug (10.0.2)
19
10
  coderay (1.1.2)
20
- concord (0.1.5)
21
- adamantium (~> 0.2.0)
22
- equalizer (~> 0.0.9)
23
11
  diff-lcs (1.3)
24
12
  docile (1.3.1)
25
- equalizer (0.0.11)
26
- ice_nine (0.11.2)
27
13
  jaro_winkler (1.5.2)
28
14
  json (2.1.0)
29
- memoizable (0.4.2)
30
- thread_safe (~> 0.3, >= 0.3.1)
31
15
  method_source (0.9.2)
32
- morpher (0.2.6)
33
- abstract_type (~> 0.0.7)
34
- adamantium (~> 0.2.0)
35
- anima (~> 0.3.0)
36
- ast (~> 2.2)
37
- concord (~> 0.1.5)
38
- equalizer (~> 0.0.9)
39
- ice_nine (~> 0.11.0)
40
- procto (~> 0.0.2)
41
- mutant (0.8.24)
42
- abstract_type (~> 0.0.7)
43
- adamantium (~> 0.2.0)
44
- anima (~> 0.3.0)
45
- ast (~> 2.2)
46
- concord (~> 0.1.5)
47
- diff-lcs (~> 1.3)
48
- equalizer (~> 0.0.9)
49
- ice_nine (~> 0.11.1)
50
- memoizable (~> 0.4.2)
51
- morpher (~> 0.2.6)
52
- parser (~> 2.5.1)
53
- procto (~> 0.0.2)
54
- regexp_parser (~> 1.2)
55
- unparser (~> 0.4.2)
56
- mutant-rspec (0.8.24)
57
- mutant (~> 0.8.24)
58
- rspec-core (>= 3.4.0, < 4.0.0)
59
16
  parallel (1.12.1)
60
17
  parser (2.5.3.0)
61
18
  ast (~> 2.4.0)
62
19
  powerpack (0.1.2)
63
- procto (0.0.3)
64
20
  pry (0.12.2)
65
21
  coderay (~> 1.1.0)
66
22
  method_source (~> 0.9.0)
67
- pry-byebug (3.6.0)
68
- byebug (~> 10.0)
69
- pry (~> 0.10)
70
23
  rainbow (3.0.0)
71
- rake (12.3.2)
72
- regexp_parser (1.3.0)
24
+ rake (12.3.3)
25
+ rake-compiler (1.1.0)
26
+ rake
73
27
  rspec (3.8.0)
74
28
  rspec-core (~> 3.8.0)
75
29
  rspec-expectations (~> 3.8.0)
@@ -99,32 +53,20 @@ GEM
99
53
  json (>= 1.8, < 3)
100
54
  simplecov-html (~> 0.10.0)
101
55
  simplecov-html (0.10.2)
102
- thread_safe (0.3.6)
103
56
  unicode-display_width (1.4.1)
104
- unparser (0.4.2)
105
- abstract_type (~> 0.0.7)
106
- adamantium (~> 0.2.0)
107
- concord (~> 0.1.5)
108
- diff-lcs (~> 1.3)
109
- equalizer (~> 0.0.9)
110
- parser (>= 2.3.1.2, < 2.6)
111
- procto (~> 0.0.2)
112
57
 
113
58
  PLATFORMS
114
59
  ruby
115
60
 
116
61
  DEPENDENCIES
117
- bundler
118
- mutant
119
- mutant-rspec
120
62
  oxide!
121
63
  pry
122
- pry-byebug
123
- rake
124
- rspec
64
+ rake (>= 12.3.3)
65
+ rake-compiler
66
+ rspec (~> 3.0)
125
67
  rubocop
126
68
  rubocop-rspec
127
69
  simplecov
128
70
 
129
71
  BUNDLED WITH
130
- 1.17.3
72
+ 2.1.4
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2018-2019 Richard E. Dodson
3
+ Copyright (c) 2018-2020 Richard E. Dodson
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -1,12 +1,13 @@
1
1
  # Oxide
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/oxide.svg)](https://badge.fury.io/rb/oxide)
4
+ ![Ruby](https://github.com/rdodson41/ruby-oxide/workflows/Ruby/badge.svg)
4
5
  [![Build Status](https://travis-ci.org/rdodson41/ruby-oxide.svg?branch=master)](https://travis-ci.org/rdodson41/ruby-oxide)
5
6
  [![Maintainability](https://api.codeclimate.com/v1/badges/021f4ab2eb6f6f4473b5/maintainability)](https://codeclimate.com/github/rdodson41/ruby-oxide/maintainability)
6
7
  [![Test Coverage](https://api.codeclimate.com/v1/badges/021f4ab2eb6f6f4473b5/test_coverage)](https://codeclimate.com/github/rdodson41/ruby-oxide/test_coverage)
7
8
 
8
9
  The `oxide` gem is an implementation of the
9
- [Oxide Programming Language](https://github.com/rdodson41/ruby-oxide) which is
10
+ [Oxide Programming Language](https://github.com/rdodson41/ruby-oxide) that is
10
11
  written in Ruby.
11
12
 
12
13
  ## Installation
@@ -19,11 +20,15 @@ gem 'oxide'
19
20
 
20
21
  And then execute:
21
22
 
22
- bundle install
23
+ ```bash
24
+ bundle install
25
+ ```
23
26
 
24
27
  Or install it yourself as:
25
28
 
26
- gem install oxide
29
+ ```bash
30
+ gem install oxide
31
+ ```
27
32
 
28
33
  ## Development
29
34
 
@@ -42,7 +47,8 @@ version, push git commits and tags, and push the `.gem` file to
42
47
  Bug reports and pull requests are welcome on GitHub at
43
48
  <https://github.com/rdodson41/ruby-oxide>. This project is intended to be a
44
49
  safe, welcoming space for collaboration, and contributors are expected to adhere
45
- to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
50
+ to the
51
+ [code of conduct](https://github.com/rdodson41/ruby-oxide/blob/master/CODE_OF_CONDUCT.md).
46
52
 
47
53
  ## License
48
54
 
@@ -51,6 +57,6 @@ The gem is available as open source under the terms of the
51
57
 
52
58
  ## Code of Conduct
53
59
 
54
- Everyone interacting in the Oxide projects codebases, issue trackers, chat
60
+ Everyone interacting in the Oxide project's codebases, issue trackers, chat
55
61
  rooms and mailing lists is expected to follow the
56
62
  [code of conduct](https://github.com/rdodson41/ruby-oxide/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile CHANGED
@@ -1,6 +1,8 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require('bundler/gem_tasks')
2
4
  require('rspec/core/rake_task')
3
5
 
4
6
  RSpec::Core::RakeTask.new(:spec)
5
7
 
6
- task(default: :spec)
8
+ task(default: %i[clobber spec])
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
2
3
 
3
4
  require('bundler/setup')
4
5
  require('oxide')
data/exe/oxide CHANGED
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
2
3
 
3
4
  require('bundler/setup')
4
5
  require('oxide')
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require('oxide/version')
2
4
 
3
5
  module Oxide
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Oxide
2
- VERSION = '0.1.9'.freeze
4
+ VERSION = '0.1.10'
3
5
  end
@@ -1,6 +1,6 @@
1
- lib = File.expand_path('lib', __dir__)
2
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
- require('oxide/version')
1
+ # frozen_string_literal: true
2
+
3
+ require_relative('lib/oxide/version')
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = 'oxide'
@@ -9,14 +9,19 @@ Gem::Specification.new do |spec|
9
9
  spec.email = ['richard.elias.dodson@gmail.com']
10
10
 
11
11
  spec.summary = 'An implementation of the Oxide Programming Language ' \
12
- 'which is written in Ruby.'
12
+ 'that is written in Ruby.'
13
13
  spec.homepage = 'https://github.com/rdodson41/ruby-oxide'
14
14
  spec.license = 'MIT'
15
+ spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')
16
+
17
+ spec.metadata['homepage_uri'] = spec.homepage
18
+ spec.metadata['source_code_uri'] = 'https://github.com/rdodson41/ruby-oxide'
19
+ spec.metadata['changelog_uri'] = 'https://github.com/rdodson41/ruby-oxide/issues'
15
20
 
16
21
  # Specify which files should be added to the gem when it is released.
17
22
  # The `git ls-files -z` loads the files in the RubyGem that have been added
18
23
  # into git.
19
- spec.files =
24
+ spec.files =
20
25
  Dir.chdir(File.expand_path(__dir__)) do
21
26
  `git ls-files -z`.split("\x0").reject do |f|
22
27
  f.match(%r{^(test|spec|features)/})
@@ -25,17 +30,5 @@ Gem::Specification.new do |spec|
25
30
  spec.bindir = 'exe'
26
31
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
27
32
  spec.require_paths = ['lib']
28
-
29
- spec.add_development_dependency('bundler')
30
- spec.add_development_dependency('mutant')
31
- spec.add_development_dependency('mutant-rspec')
32
- spec.add_development_dependency('pry')
33
- spec.add_development_dependency('pry-byebug')
34
- spec.add_development_dependency('rake')
35
- spec.add_development_dependency('rspec')
36
- spec.add_development_dependency('rubocop')
37
- spec.add_development_dependency('rubocop-rspec')
38
- spec.add_development_dependency('simplecov')
39
-
40
- spec.required_ruby_version = '>= 2.2.0'
33
+ spec.extensions = []
41
34
  end
metadata CHANGED
@@ -1,155 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oxide
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9
4
+ version: 0.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Richard E. Dodson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-01-08 00:00:00.000000000 Z
12
- dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: bundler
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - ">="
18
- - !ruby/object:Gem::Version
19
- version: '0'
20
- type: :development
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - ">="
25
- - !ruby/object:Gem::Version
26
- version: '0'
27
- - !ruby/object:Gem::Dependency
28
- name: mutant
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - ">="
32
- - !ruby/object:Gem::Version
33
- version: '0'
34
- type: :development
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - ">="
39
- - !ruby/object:Gem::Version
40
- version: '0'
41
- - !ruby/object:Gem::Dependency
42
- name: mutant-rspec
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - ">="
46
- - !ruby/object:Gem::Version
47
- version: '0'
48
- type: :development
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - ">="
53
- - !ruby/object:Gem::Version
54
- version: '0'
55
- - !ruby/object:Gem::Dependency
56
- name: pry
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'
69
- - !ruby/object:Gem::Dependency
70
- name: pry-byebug
71
- requirement: !ruby/object:Gem::Requirement
72
- requirements:
73
- - - ">="
74
- - !ruby/object:Gem::Version
75
- version: '0'
76
- type: :development
77
- prerelease: false
78
- version_requirements: !ruby/object:Gem::Requirement
79
- requirements:
80
- - - ">="
81
- - !ruby/object:Gem::Version
82
- version: '0'
83
- - !ruby/object:Gem::Dependency
84
- name: rake
85
- requirement: !ruby/object:Gem::Requirement
86
- requirements:
87
- - - ">="
88
- - !ruby/object:Gem::Version
89
- version: '0'
90
- type: :development
91
- prerelease: false
92
- version_requirements: !ruby/object:Gem::Requirement
93
- requirements:
94
- - - ">="
95
- - !ruby/object:Gem::Version
96
- version: '0'
97
- - !ruby/object:Gem::Dependency
98
- name: rspec
99
- requirement: !ruby/object:Gem::Requirement
100
- requirements:
101
- - - ">="
102
- - !ruby/object:Gem::Version
103
- version: '0'
104
- type: :development
105
- prerelease: false
106
- version_requirements: !ruby/object:Gem::Requirement
107
- requirements:
108
- - - ">="
109
- - !ruby/object:Gem::Version
110
- version: '0'
111
- - !ruby/object:Gem::Dependency
112
- name: rubocop
113
- requirement: !ruby/object:Gem::Requirement
114
- requirements:
115
- - - ">="
116
- - !ruby/object:Gem::Version
117
- version: '0'
118
- type: :development
119
- prerelease: false
120
- version_requirements: !ruby/object:Gem::Requirement
121
- requirements:
122
- - - ">="
123
- - !ruby/object:Gem::Version
124
- version: '0'
125
- - !ruby/object:Gem::Dependency
126
- name: rubocop-rspec
127
- requirement: !ruby/object:Gem::Requirement
128
- requirements:
129
- - - ">="
130
- - !ruby/object:Gem::Version
131
- version: '0'
132
- type: :development
133
- prerelease: false
134
- version_requirements: !ruby/object:Gem::Requirement
135
- requirements:
136
- - - ">="
137
- - !ruby/object:Gem::Version
138
- version: '0'
139
- - !ruby/object:Gem::Dependency
140
- name: simplecov
141
- requirement: !ruby/object:Gem::Requirement
142
- requirements:
143
- - - ">="
144
- - !ruby/object:Gem::Version
145
- version: '0'
146
- type: :development
147
- prerelease: false
148
- version_requirements: !ruby/object:Gem::Requirement
149
- requirements:
150
- - - ">="
151
- - !ruby/object:Gem::Version
152
- version: '0'
11
+ date: 2020-03-22 00:00:00.000000000 Z
12
+ dependencies: []
153
13
  description:
154
14
  email:
155
15
  - richard.elias.dodson@gmail.com
@@ -158,6 +18,7 @@ executables:
158
18
  extensions: []
159
19
  extra_rdoc_files: []
160
20
  files:
21
+ - ".github/workflows/ruby.yml"
161
22
  - ".gitignore"
162
23
  - ".reek.yml"
163
24
  - ".rspec"
@@ -171,8 +32,6 @@ files:
171
32
  - README.md
172
33
  - Rakefile
173
34
  - bin/console
174
- - bin/mutant
175
- - bin/mutant-all
176
35
  - bin/setup
177
36
  - exe/oxide
178
37
  - lib/oxide.rb
@@ -181,7 +40,10 @@ files:
181
40
  homepage: https://github.com/rdodson41/ruby-oxide
182
41
  licenses:
183
42
  - MIT
184
- metadata: {}
43
+ metadata:
44
+ homepage_uri: https://github.com/rdodson41/ruby-oxide
45
+ source_code_uri: https://github.com/rdodson41/ruby-oxide
46
+ changelog_uri: https://github.com/rdodson41/ruby-oxide/issues
185
47
  post_install_message:
186
48
  rdoc_options: []
187
49
  require_paths:
@@ -190,15 +52,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
190
52
  requirements:
191
53
  - - ">="
192
54
  - !ruby/object:Gem::Version
193
- version: 2.2.0
55
+ version: 2.3.0
194
56
  required_rubygems_version: !ruby/object:Gem::Requirement
195
57
  requirements:
196
58
  - - ">="
197
59
  - !ruby/object:Gem::Version
198
60
  version: '0'
199
61
  requirements: []
200
- rubygems_version: 3.0.2
62
+ rubygems_version: 3.1.2
201
63
  signing_key:
202
64
  specification_version: 4
203
- summary: An implementation of the Oxide Programming Language which is written in Ruby.
65
+ summary: An implementation of the Oxide Programming Language that is written in Ruby.
204
66
  test_files: []
data/bin/mutant DELETED
@@ -1,3 +0,0 @@
1
- #!/usr/bin/env bash
2
-
3
- bundle exec mutant --use rspec "${@}"
@@ -1,4 +0,0 @@
1
- #!/usr/bin/env bash
2
-
3
- ag --no-filename --no-break --only-matching '(?<=^RSpec\.describe\()\w+(::\w+)*(?=\))' spec \
4
- | xargs bundle exec mutant --use rspec "${@}"