mruby_generate 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +11 -0
- data/.rspec +3 -0
- data/.travis.yml +6 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +8 -0
- data/Gemfile.lock +36 -0
- data/LICENSE.txt +21 -0
- data/README.md +28 -0
- data/Rakefile +8 -0
- data/bin/console +15 -0
- data/bin/mruby_generate +8 -0
- data/bin/setup +8 -0
- data/lib/mruby_generate/cli.rb +20 -0
- data/lib/mruby_generate/create_cli_project.rb +60 -0
- data/lib/mruby_generate/version.rb +5 -0
- data/lib/mruby_generate.rb +8 -0
- data/mruby_generate.gemspec +29 -0
- data/templates/cli_project/.gitignore +1 -0
- data/templates/cli_project/Gemfile +3 -0
- data/templates/cli_project/LICENSE +24 -0
- data/templates/cli_project/README.md +12 -0
- data/templates/cli_project/Rakefile +31 -0
- data/templates/cli_project/build_config.rb +17 -0
- data/templates/cli_project/mrbgem.rake +7 -0
- data/templates/cli_project/mrblib/mrb_your_project.rb +3 -0
- data/templates/cli_project/tools/your_project/mrb_your_project.c +31 -0
- data/templates/cli_project/your_project.gem +7 -0
- metadata +86 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 1b4df5709171937ea66d643a6c9548fe6bbefe5649a502806385bf3f6b7b1d7b
|
4
|
+
data.tar.gz: 6aad9a39a0a34bf30eab1582302a302a867b6ad7b2202d141a698b254bc7dd5a
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 3d522b697517e36db5bb8a5af1fe8ddbf69721c348611e8d59d657cb535c8cd0d9cd483171d643c746cec89dcddc6f74f7bda977b834d030e3421f5c9f1e507b
|
7
|
+
data.tar.gz: f19a97a9a52d54305927e969dfd38d2734a8e3862334cc136424ab433356cfaec83b2ffdf31ff6508a34c4b12ba155ba00d9bb412443e70907d91630f703d0de
|
data/.gitignore
ADDED
data/.rspec
ADDED
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 nishio@densan-labs.net. 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 [https://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: https://contributor-covenant.org
|
74
|
+
[version]: https://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
mruby_generate (0.1.0)
|
5
|
+
thor
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
diff-lcs (1.4.4)
|
11
|
+
rake (12.3.3)
|
12
|
+
rspec (3.10.0)
|
13
|
+
rspec-core (~> 3.10.0)
|
14
|
+
rspec-expectations (~> 3.10.0)
|
15
|
+
rspec-mocks (~> 3.10.0)
|
16
|
+
rspec-core (3.10.1)
|
17
|
+
rspec-support (~> 3.10.0)
|
18
|
+
rspec-expectations (3.10.1)
|
19
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
20
|
+
rspec-support (~> 3.10.0)
|
21
|
+
rspec-mocks (3.10.2)
|
22
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
23
|
+
rspec-support (~> 3.10.0)
|
24
|
+
rspec-support (3.10.2)
|
25
|
+
thor (1.1.0)
|
26
|
+
|
27
|
+
PLATFORMS
|
28
|
+
ruby
|
29
|
+
|
30
|
+
DEPENDENCIES
|
31
|
+
mruby_generate!
|
32
|
+
rake (~> 12.0)
|
33
|
+
rspec (~> 3.0)
|
34
|
+
|
35
|
+
BUNDLED WITH
|
36
|
+
2.1.4
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2021 Shinsuke Nishio
|
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
|
13
|
+
all 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
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
# MrubyGenerate
|
2
|
+
|
3
|
+
Generate a mruby project.
|
4
|
+
|
5
|
+
## Usage
|
6
|
+
|
7
|
+
### Create New CLI Project
|
8
|
+
|
9
|
+
`mruby_generate new YOUR_PROJECT_NAME`
|
10
|
+
|
11
|
+
## Development
|
12
|
+
|
13
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
14
|
+
|
15
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `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).
|
16
|
+
|
17
|
+
## Contributing
|
18
|
+
|
19
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/nishio-dens/mruby_generate. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/nishio-dens/mruby_generate/blob/master/CODE_OF_CONDUCT.md).
|
20
|
+
|
21
|
+
|
22
|
+
## License
|
23
|
+
|
24
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
25
|
+
|
26
|
+
## Code of Conduct
|
27
|
+
|
28
|
+
Everyone interacting in the MrubyGenerate project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/nishio-dens/mruby_generate/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
require 'bundler/setup'
|
5
|
+
require 'mruby_generate'
|
6
|
+
|
7
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
8
|
+
# with your gem easier. You can also use a different console, if you like.
|
9
|
+
|
10
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
11
|
+
# require "pry"
|
12
|
+
# Pry.start
|
13
|
+
|
14
|
+
require 'irb'
|
15
|
+
IRB.start(__FILE__)
|
data/bin/mruby_generate
ADDED
data/bin/setup
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'thor'
|
4
|
+
|
5
|
+
module MRubyGenerate
|
6
|
+
class CLI < Thor
|
7
|
+
map %w[--version -v] => :version
|
8
|
+
|
9
|
+
desc 'new PROJECT_NAME', 'create new project'
|
10
|
+
def new(project_name)
|
11
|
+
CreateCliProject.new(project_name).create
|
12
|
+
end
|
13
|
+
|
14
|
+
desc 'version', 'print the version'
|
15
|
+
def version
|
16
|
+
require 'convergence/version'
|
17
|
+
puts "version #{Convergence::VERSION}"
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,60 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'erb'
|
4
|
+
require 'fileutils'
|
5
|
+
|
6
|
+
module MRubyGenerate
|
7
|
+
class CreateCliProject
|
8
|
+
attr_reader :project_name, :your_name
|
9
|
+
|
10
|
+
TEMPLATE_FILES = %w[
|
11
|
+
README.md
|
12
|
+
LICENSE
|
13
|
+
build_config.rb
|
14
|
+
Rakefile
|
15
|
+
your_project.gem
|
16
|
+
mrbgem.rake
|
17
|
+
mrblib/mrb_your_project.rb
|
18
|
+
tools/your_project/mrb_your_project.c
|
19
|
+
].freeze
|
20
|
+
|
21
|
+
def initialize(project_name)
|
22
|
+
@project_name = project_name
|
23
|
+
@your_name = `git config --global --get user.name`.strip
|
24
|
+
@template_path = File.expand_path('../../templates/cli_project', __dir__)
|
25
|
+
@dest_path = @project_name
|
26
|
+
end
|
27
|
+
|
28
|
+
def create
|
29
|
+
create_and_copy_template_dir
|
30
|
+
apply_templates
|
31
|
+
rename_files
|
32
|
+
end
|
33
|
+
|
34
|
+
private
|
35
|
+
|
36
|
+
def create_and_copy_template_dir
|
37
|
+
FileUtils.cp_r @template_path, @project_name
|
38
|
+
end
|
39
|
+
|
40
|
+
def apply_templates
|
41
|
+
TEMPLATE_FILES.each do |path|
|
42
|
+
full_path = File.join(@dest_path, path)
|
43
|
+
t = File.read(full_path)
|
44
|
+
File.open(full_path, 'w') { |f| f << ERB.new(t).result(binding) }
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
def rename_files
|
49
|
+
FileUtils.mkdir File.join(@project_name, "tools", @project_name)
|
50
|
+
|
51
|
+
[
|
52
|
+
[File.join(@project_name, 'your_project.gem'), File.join(@project_name, "#{project_name}.gem")],
|
53
|
+
[File.join(@project_name, 'mrblib', 'mrb_your_project.rb'), File.join(@project_name, 'mrblib', "mrb_#{project_name}.rb")],
|
54
|
+
[File.join(@project_name, 'tools', 'your_project', 'mrb_your_project.c'), File.join(@project_name, 'tools', @project_name, "mrb_#{project_name}.c")]
|
55
|
+
].each { |from, to| FileUtils.mv(from, to) }
|
56
|
+
|
57
|
+
FileUtils.rmdir File.join(@project_name, "tools", "your_project")
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'lib/mruby_generate/version'
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = 'mruby_generate'
|
7
|
+
spec.version = MRubyGenerate::VERSION
|
8
|
+
spec.authors = ['Shinsuke Nishio']
|
9
|
+
spec.email = ['nishio@densan-labs.net']
|
10
|
+
|
11
|
+
spec.summary = 'mruby project template generator'
|
12
|
+
spec.description = 'mruby project template generator'
|
13
|
+
spec.license = 'MIT'
|
14
|
+
spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')
|
15
|
+
|
16
|
+
spec.metadata['homepage_uri'] = 'https://github.com/nishio-dens/mruby_generate'
|
17
|
+
spec.metadata['source_code_uri'] = 'https://github.com/nishio-dens/mruby_generate'
|
18
|
+
|
19
|
+
# Specify which files should be added to the gem when it is released.
|
20
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
21
|
+
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
22
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
23
|
+
end
|
24
|
+
spec.bindir = 'exe'
|
25
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
26
|
+
spec.require_paths = ['lib']
|
27
|
+
|
28
|
+
spec.add_dependency 'thor'
|
29
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
mruby/
|
@@ -0,0 +1,24 @@
|
|
1
|
+
<%= @project_name %>
|
2
|
+
|
3
|
+
Copyright (c) <%= @your_name %> <%= Time.new.year %>
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
19
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
20
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
21
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
22
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
23
|
+
|
24
|
+
[ MIT license: http://www.opensource.org/licenses/mit-license.php ]
|
@@ -0,0 +1,31 @@
|
|
1
|
+
MRUBY_CONFIG=File.expand_path(ENV["MRUBY_CONFIG"] || "build_config.rb")
|
2
|
+
MRUBY_VERSION=ENV["MRUBY_VERSION"] || "3.0.0"
|
3
|
+
|
4
|
+
file :mruby do
|
5
|
+
sh "git clone --depth=1 git://github.com/mruby/mruby.git"
|
6
|
+
if MRUBY_VERSION != 'master'
|
7
|
+
Dir.chdir 'mruby' do
|
8
|
+
sh "git fetch --tags"
|
9
|
+
rev = %x{git rev-parse #{MRUBY_VERSION}}
|
10
|
+
sh "git checkout #{rev}"
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
desc "compile binary"
|
16
|
+
task :compile => :mruby do
|
17
|
+
sh "cd mruby && rake all MRUBY_CONFIG=#{MRUBY_CONFIG}"
|
18
|
+
end
|
19
|
+
|
20
|
+
desc "test"
|
21
|
+
task :test => :mruby do
|
22
|
+
sh "cd mruby && rake all test MRUBY_CONFIG=#{MRUBY_CONFIG}"
|
23
|
+
end
|
24
|
+
|
25
|
+
desc "cleanup"
|
26
|
+
task :clean do
|
27
|
+
exit 0 unless File.directory?('mruby')
|
28
|
+
sh "cd mruby && rake deep_clean"
|
29
|
+
end
|
30
|
+
|
31
|
+
task :default => :compile
|
@@ -0,0 +1,17 @@
|
|
1
|
+
def gem_config(conf)
|
2
|
+
conf.gem File.expand_path(File.dirname(__FILE__))
|
3
|
+
end
|
4
|
+
|
5
|
+
MRuby::Build.new do |conf|
|
6
|
+
toolchain :gcc
|
7
|
+
|
8
|
+
conf.enable_test
|
9
|
+
|
10
|
+
if ENV['DEBUG'] == 'true'
|
11
|
+
conf.enable_debug
|
12
|
+
conf.cc.defines = %w(MRB_ENABLE_DEBUG_HOOK)
|
13
|
+
conf.gem core: 'mruby-bin-debugger'
|
14
|
+
end
|
15
|
+
|
16
|
+
gem_config(conf)
|
17
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
#include "mruby.h"
|
2
|
+
#include "mruby/array.h"
|
3
|
+
|
4
|
+
#define EXIT_SUCCESS 0
|
5
|
+
#define EXIT_FAILURE 1
|
6
|
+
|
7
|
+
int main(int argc, char *argv[])
|
8
|
+
{
|
9
|
+
mrb_state *mrb = mrb_open();
|
10
|
+
mrb_value ARGV = mrb_ary_new_capa(mrb, argc);
|
11
|
+
int i;
|
12
|
+
int return_value;
|
13
|
+
|
14
|
+
for (i = 0; i < argc; i++) {
|
15
|
+
mrb_ary_push(mrb, ARGV, mrb_str_new_cstr(mrb, argv[i]));
|
16
|
+
}
|
17
|
+
mrb_define_global_const(mrb, "ARGV", ARGV);
|
18
|
+
|
19
|
+
// call __main__(ARGV)
|
20
|
+
mrb_funcall(mrb, mrb_top_self(mrb), "__main__", 1, ARGV);
|
21
|
+
|
22
|
+
return_value = EXIT_SUCCESS;
|
23
|
+
|
24
|
+
if (mrb->exc) {
|
25
|
+
mrb_print_error(mrb);
|
26
|
+
return_value = EXIT_FAILURE;
|
27
|
+
}
|
28
|
+
mrb_close(mrb);
|
29
|
+
|
30
|
+
return return_value;
|
31
|
+
}
|
metadata
ADDED
@@ -0,0 +1,86 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: mruby_generate
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Shinsuke Nishio
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2021-09-12 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: thor
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
description: mruby project template generator
|
28
|
+
email:
|
29
|
+
- nishio@densan-labs.net
|
30
|
+
executables: []
|
31
|
+
extensions: []
|
32
|
+
extra_rdoc_files: []
|
33
|
+
files:
|
34
|
+
- ".gitignore"
|
35
|
+
- ".rspec"
|
36
|
+
- ".travis.yml"
|
37
|
+
- CODE_OF_CONDUCT.md
|
38
|
+
- Gemfile
|
39
|
+
- Gemfile.lock
|
40
|
+
- LICENSE.txt
|
41
|
+
- README.md
|
42
|
+
- Rakefile
|
43
|
+
- bin/console
|
44
|
+
- bin/mruby_generate
|
45
|
+
- bin/setup
|
46
|
+
- lib/mruby_generate.rb
|
47
|
+
- lib/mruby_generate/cli.rb
|
48
|
+
- lib/mruby_generate/create_cli_project.rb
|
49
|
+
- lib/mruby_generate/version.rb
|
50
|
+
- mruby_generate.gemspec
|
51
|
+
- templates/cli_project/.gitignore
|
52
|
+
- templates/cli_project/Gemfile
|
53
|
+
- templates/cli_project/LICENSE
|
54
|
+
- templates/cli_project/README.md
|
55
|
+
- templates/cli_project/Rakefile
|
56
|
+
- templates/cli_project/build_config.rb
|
57
|
+
- templates/cli_project/mrbgem.rake
|
58
|
+
- templates/cli_project/mrblib/mrb_your_project.rb
|
59
|
+
- templates/cli_project/tools/your_project/mrb_your_project.c
|
60
|
+
- templates/cli_project/your_project.gem
|
61
|
+
homepage:
|
62
|
+
licenses:
|
63
|
+
- MIT
|
64
|
+
metadata:
|
65
|
+
homepage_uri: https://github.com/nishio-dens/mruby_generate
|
66
|
+
source_code_uri: https://github.com/nishio-dens/mruby_generate
|
67
|
+
post_install_message:
|
68
|
+
rdoc_options: []
|
69
|
+
require_paths:
|
70
|
+
- lib
|
71
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 2.3.0
|
76
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
77
|
+
requirements:
|
78
|
+
- - ">="
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: '0'
|
81
|
+
requirements: []
|
82
|
+
rubygems_version: 3.1.4
|
83
|
+
signing_key:
|
84
|
+
specification_version: 4
|
85
|
+
summary: mruby project template generator
|
86
|
+
test_files: []
|