akari 0.1.0
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 +7 -0
- data/.gitignore +53 -0
- data/.travis.yml +7 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/LICENSE +21 -0
- data/README.md +74 -0
- data/README_JA.md +74 -0
- data/Rakefile +10 -0
- data/akari.gemspec +35 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/exe/akari +5 -0
- data/lib/akari.rb +36 -0
- data/lib/akari/cli.rb +24 -0
- data/lib/akari/version.rb +3 -0
- data/sample/hello_world.akari +13 -0
- metadata +159 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 0d47e9c451e3d8a31a05ffeaa5e790d5b383314881803580727b7193e251d3f0
|
4
|
+
data.tar.gz: beacb87afa5a4211f4f887b27eae3c5563f0e6b7885c23276b8d0000b70a5385
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 60f1d3a02450c6ec8a1ab5b22cf36dd62328fd0d1af9be422423a5c947b71b9af5ded263c707a61c69c8cc4a306f64ea0e3122aafd632e06aa1c5a682e12efd4
|
7
|
+
data.tar.gz: a4a88418e7a9b13f830731dbf364096a14b1c5977dcc1f1a7abdbae642f88115282882e026827e8749272aadc2368c6124d5e9ed48be7165832ed0a97c6c8509
|
data/.gitignore
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
*.gem
|
2
|
+
*.rbc
|
3
|
+
/.config
|
4
|
+
/coverage/
|
5
|
+
/InstalledFiles
|
6
|
+
/pkg/
|
7
|
+
/spec/reports/
|
8
|
+
/spec/examples.txt
|
9
|
+
/test/tmp/
|
10
|
+
/test/version_tmp/
|
11
|
+
/tmp/
|
12
|
+
|
13
|
+
# Used by dotenv library to load environment variables.
|
14
|
+
# .env
|
15
|
+
|
16
|
+
## Specific to RubyMotion:
|
17
|
+
.dat*
|
18
|
+
.repl_history
|
19
|
+
build/
|
20
|
+
*.bridgesupport
|
21
|
+
build-iPhoneOS/
|
22
|
+
build-iPhoneSimulator/
|
23
|
+
|
24
|
+
## Specific to RubyMotion (use of CocoaPods):
|
25
|
+
#
|
26
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
27
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
28
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
29
|
+
#
|
30
|
+
# vendor/Pods/
|
31
|
+
|
32
|
+
## Documentation cache and generated files:
|
33
|
+
/.yardoc/
|
34
|
+
/_yardoc/
|
35
|
+
/doc/
|
36
|
+
/rdoc/
|
37
|
+
|
38
|
+
## Environment normalization:
|
39
|
+
/.bundle/
|
40
|
+
/vendor/bundle
|
41
|
+
/lib/bundler/man/
|
42
|
+
|
43
|
+
# for a library or gem, you might want to ignore these files since the code is
|
44
|
+
# intended to run in multiple environments; otherwise, check them in:
|
45
|
+
Gemfile.lock
|
46
|
+
.ruby-version
|
47
|
+
.ruby-gemset
|
48
|
+
|
49
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
50
|
+
.rvmrc
|
51
|
+
|
52
|
+
# VSCode
|
53
|
+
/.vscode
|
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at segur.opus@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
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]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2018 segur
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Akari
|
2
|
+
<div style="text-align:right">Language: <i>English</i> | <a href="README_JA.md">日本語</a></div>
|
3
|
+
|
4
|
+
This is Akari interpreter written in Ruby.
|
5
|
+
|
6
|
+
|
7
|
+
|
8
|
+
## Installation
|
9
|
+
|
10
|
+
Add this line to your application's Gemfile:
|
11
|
+
|
12
|
+
```ruby
|
13
|
+
gem 'akari'
|
14
|
+
```
|
15
|
+
|
16
|
+
And then execute:
|
17
|
+
|
18
|
+
$ bundle
|
19
|
+
|
20
|
+
Or install it yourself as:
|
21
|
+
|
22
|
+
$ gem install akari
|
23
|
+
|
24
|
+
|
25
|
+
|
26
|
+
## Usage
|
27
|
+
|
28
|
+
### Show help
|
29
|
+
|
30
|
+
```bash
|
31
|
+
$ akari h
|
32
|
+
Commands:
|
33
|
+
akari convert {akari_code_file} # Convert {akari_code} to {brainfxxk_code}
|
34
|
+
akari execute {akari_code_file} # Execute {akari_code}
|
35
|
+
akari help [COMMAND] # Describe available commands or one speci...
|
36
|
+
akari version # Show akari version
|
37
|
+
```
|
38
|
+
|
39
|
+
### Convert Akari Code to Brainfxxk Code
|
40
|
+
|
41
|
+
```bash
|
42
|
+
$ akari convert sample/hello_world.akari > sample/hello_world.bf
|
43
|
+
```
|
44
|
+
|
45
|
+
### Execute Akari Code
|
46
|
+
|
47
|
+
```bash
|
48
|
+
$ akari execute sample/hello_world.akari
|
49
|
+
Hello, world!
|
50
|
+
```
|
51
|
+
|
52
|
+
|
53
|
+
|
54
|
+
## Contributing
|
55
|
+
|
56
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/segurvita/akari. 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.
|
57
|
+
|
58
|
+
|
59
|
+
|
60
|
+
## Author
|
61
|
+
|
62
|
+
[@segur_vita](https://twitter.com/segur_vita)
|
63
|
+
|
64
|
+
|
65
|
+
|
66
|
+
## License
|
67
|
+
|
68
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
69
|
+
|
70
|
+
|
71
|
+
|
72
|
+
## Code of Conduct
|
73
|
+
|
74
|
+
Everyone interacting in the Akari project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/akari/blob/master/CODE_OF_CONDUCT.md).
|
data/README_JA.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Akari
|
2
|
+
<div style="text-align:right">Language: <a href="README.md">English</a> | <i>日本語</i></div>
|
3
|
+
|
4
|
+
これはAkari言語のインタプライターです。Rubyで書かれています。
|
5
|
+
|
6
|
+
|
7
|
+
|
8
|
+
## インストール方法
|
9
|
+
|
10
|
+
Rubyのコードを作成中の場合、以下のコードをGemfileに追加してください。
|
11
|
+
|
12
|
+
```ruby
|
13
|
+
gem 'akari'
|
14
|
+
```
|
15
|
+
|
16
|
+
そして以下のコマンドを実行すれば、インストールされます。
|
17
|
+
|
18
|
+
```bash
|
19
|
+
$ bundle
|
20
|
+
```
|
21
|
+
|
22
|
+
あるいは、以下のコマンドでもインストールが可能です。
|
23
|
+
|
24
|
+
```bash
|
25
|
+
$ gem install akari
|
26
|
+
```
|
27
|
+
|
28
|
+
|
29
|
+
|
30
|
+
## 使用方法
|
31
|
+
|
32
|
+
### ヘルプを表示する
|
33
|
+
|
34
|
+
```bash
|
35
|
+
$ akari h
|
36
|
+
Commands:
|
37
|
+
akari convert {akari_code_file} # Convert {akari_code} to {brainfxxk_code}
|
38
|
+
akari execute {akari_code_file} # Execute {akari_code}
|
39
|
+
akari help [COMMAND] # Describe available commands or one speci...
|
40
|
+
akari version # Show akari version
|
41
|
+
```
|
42
|
+
|
43
|
+
### Akari言語のコードをBrainfxxkのコードに変換する
|
44
|
+
|
45
|
+
```bash
|
46
|
+
$ akari convert sample/hello_world.akari > sample/hello_world.bf
|
47
|
+
```
|
48
|
+
|
49
|
+
### Akari言語を実行する
|
50
|
+
|
51
|
+
```bash
|
52
|
+
$ akari execute sample/hello_world.akari
|
53
|
+
Hello, world!
|
54
|
+
```
|
55
|
+
|
56
|
+
|
57
|
+
|
58
|
+
## Contributing
|
59
|
+
|
60
|
+
バグ報告やプルリクエストは、https://github.com/segurvita/akari にお願いします。
|
61
|
+
|
62
|
+
|
63
|
+
|
64
|
+
## 作成者
|
65
|
+
|
66
|
+
[@segur_vita](https://twitter.com/segur_vita)
|
67
|
+
|
68
|
+
|
69
|
+
|
70
|
+
## ライセンス
|
71
|
+
|
72
|
+
[MIT License](https://opensource.org/licenses/MIT).
|
73
|
+
|
74
|
+
|
data/Rakefile
ADDED
data/akari.gemspec
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "akari/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "akari"
|
8
|
+
spec.version = Akari::VERSION
|
9
|
+
spec.authors = ["segur"]
|
10
|
+
spec.email = ["segur.opus@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{Akari languarge interpreter written in Ruby.}
|
13
|
+
spec.description = %q{New Brainf*ck derivation language generator and executor.}
|
14
|
+
spec.homepage = "https://github.com/segurvita/akari"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
# Specify which files should be added to the gem when it is released.
|
18
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
19
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
20
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
21
|
+
end
|
22
|
+
spec.bindir = "exe"
|
23
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
24
|
+
spec.require_paths = ["lib"]
|
25
|
+
|
26
|
+
spec.add_development_dependency "bundler", "~> 1.17"
|
27
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
28
|
+
spec.add_development_dependency "minitest", "~> 5.0"
|
29
|
+
spec.add_development_dependency "ruby-debug-ide"
|
30
|
+
spec.add_development_dependency "debase"
|
31
|
+
|
32
|
+
# Custom
|
33
|
+
spec.add_runtime_dependency "r-fxxk", "~> 0.4"
|
34
|
+
spec.add_dependency "thor"
|
35
|
+
end
|
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "akari"
|
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(__FILE__)
|
data/bin/setup
ADDED
data/exe/akari
ADDED
data/lib/akari.rb
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
Encoding.default_external = "UTF-8"
|
2
|
+
require_relative "akari/version"
|
3
|
+
require_relative "akari/cli"
|
4
|
+
require "r-fxxk"
|
5
|
+
|
6
|
+
module Akari
|
7
|
+
# define Error
|
8
|
+
class Error < StandardError; end
|
9
|
+
|
10
|
+
# define Akari language
|
11
|
+
class AkariSpec < Brainfuck
|
12
|
+
nxt "ピロリンッ"
|
13
|
+
inc "ハロー!"
|
14
|
+
prv "悪い子ちゃん"
|
15
|
+
dec "ヤミ"
|
16
|
+
opn "いきま→しょう!"
|
17
|
+
cls "卍"
|
18
|
+
put "あ、カラスだ"
|
19
|
+
get "おけまる"
|
20
|
+
end
|
21
|
+
|
22
|
+
# compile to Brainfuck
|
23
|
+
def self.convert(akari_code)
|
24
|
+
AkariSpec.new.compile(akari_code)
|
25
|
+
end
|
26
|
+
|
27
|
+
# run
|
28
|
+
def self.execute(akari_code)
|
29
|
+
AkariSpec.new.fuck(akari_code)
|
30
|
+
end
|
31
|
+
|
32
|
+
# get file body
|
33
|
+
def self.read_file(filename)
|
34
|
+
File.read(filename.encode("UTF-8")).encode("UTF-8")
|
35
|
+
end
|
36
|
+
end
|
data/lib/akari/cli.rb
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
Encoding.default_external = "UTF-8"
|
2
|
+
require_relative "../akari"
|
3
|
+
require "thor"
|
4
|
+
|
5
|
+
module Akari
|
6
|
+
class CLI < Thor
|
7
|
+
desc "convert {akari_code_file}", "Convert {akari_code} to {brainfxxk_code}"
|
8
|
+
def convert(filename)
|
9
|
+
filebody = Akari.read_file(filename)
|
10
|
+
puts Akari.convert(filebody)
|
11
|
+
end
|
12
|
+
|
13
|
+
desc "execute {akari_code_file}", "Execute {akari_code}"
|
14
|
+
def execute(filename)
|
15
|
+
filebody = Akari.read_file(filename)
|
16
|
+
puts Akari.execute(filebody)
|
17
|
+
end
|
18
|
+
|
19
|
+
desc "version", "Show akari version"
|
20
|
+
def version
|
21
|
+
puts "akari " + Akari::VERSION
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
ハロー!ハロー!ハロー!ハロー!ハロー!ハロー!ハロー!ハロー!ハロー!
|
2
|
+
いきま→しょう!ピロリンッハロー!ハロー!ハロー!ハロー!ハロー!ハロー!
|
3
|
+
ハロー!ハロー!ピロリンッハロー!ハロー!ハロー!ハロー!ハロー!ハロー!
|
4
|
+
ハロー!ハロー!ハロー!ハロー!ハロー!ピロリンッハロー!ハロー!ハロー!
|
5
|
+
ハロー!ハロー!悪い子ちゃん悪い子ちゃん悪い子ちゃんヤミ卍ピロリンッ
|
6
|
+
あ、カラスだピロリンッハロー!ハロー!あ、カラスだハロー!ハロー!ハロー!
|
7
|
+
ハロー!ハロー!ハロー!ハロー!あ、カラスだあ、カラスだハロー!ハロー!
|
8
|
+
ハロー!あ、カラスだピロリンッヤミあ、カラスだヤミヤミヤミヤミヤミヤミヤミ
|
9
|
+
ヤミヤミヤミヤミヤミあ、カラスだ悪い子ちゃんハロー!ハロー!ハロー!
|
10
|
+
ハロー!ハロー!ハロー!ハロー!ハロー!あ、カラスだヤミヤミヤミヤミヤミ
|
11
|
+
ヤミヤミヤミあ、カラスだハロー!ハロー!ハロー!あ、カラスだヤミヤミヤミ
|
12
|
+
ヤミヤミヤミあ、カラスだヤミヤミヤミヤミヤミヤミヤミヤミあ、カラスだ
|
13
|
+
ピロリンッハロー!あ、カラスだ"
|
metadata
ADDED
@@ -0,0 +1,159 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: akari
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- segur
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-12-18 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: '1.17'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.17'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: minitest
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '5.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '5.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: ruby-debug-ide
|
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: debase
|
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: r-fxxk
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0.4'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0.4'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: thor
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
description: New Brainf*ck derivation language generator and executor.
|
112
|
+
email:
|
113
|
+
- segur.opus@gmail.com
|
114
|
+
executables:
|
115
|
+
- akari
|
116
|
+
extensions: []
|
117
|
+
extra_rdoc_files: []
|
118
|
+
files:
|
119
|
+
- ".gitignore"
|
120
|
+
- ".travis.yml"
|
121
|
+
- CODE_OF_CONDUCT.md
|
122
|
+
- Gemfile
|
123
|
+
- LICENSE
|
124
|
+
- README.md
|
125
|
+
- README_JA.md
|
126
|
+
- Rakefile
|
127
|
+
- akari.gemspec
|
128
|
+
- bin/console
|
129
|
+
- bin/setup
|
130
|
+
- exe/akari
|
131
|
+
- lib/akari.rb
|
132
|
+
- lib/akari/cli.rb
|
133
|
+
- lib/akari/version.rb
|
134
|
+
- sample/hello_world.akari
|
135
|
+
homepage: https://github.com/segurvita/akari
|
136
|
+
licenses:
|
137
|
+
- MIT
|
138
|
+
metadata: {}
|
139
|
+
post_install_message:
|
140
|
+
rdoc_options: []
|
141
|
+
require_paths:
|
142
|
+
- lib
|
143
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
144
|
+
requirements:
|
145
|
+
- - ">="
|
146
|
+
- !ruby/object:Gem::Version
|
147
|
+
version: '0'
|
148
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - ">="
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '0'
|
153
|
+
requirements: []
|
154
|
+
rubyforge_project:
|
155
|
+
rubygems_version: 2.7.8
|
156
|
+
signing_key:
|
157
|
+
specification_version: 4
|
158
|
+
summary: Akari languarge interpreter written in Ruby.
|
159
|
+
test_files: []
|