make_gem 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 +8 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +51 -0
- data/exe/make_gem +8 -0
- data/lib/make_gem.rb +137 -0
- data/lib/make_gem/process.rb +9 -0
- data/lib/make_gem/version.rb +5 -0
- data/lib/template/README.erb +47 -0
- data/lib/template/gem_main.erb +7 -0
- data/lib/template/gem_spec.erb +30 -0
- data/lib/template/gem_test.erb +22 -0
- data/lib/template/rakefile.erb +16 -0
- data/lib/template/version.erb +5 -0
- data/make_gem.gemspec +30 -0
- data/rakefile.rb +16 -0
- metadata +118 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 221e250648cb82d31cc7cfa8741d898c59a6d59d
|
4
|
+
data.tar.gz: 17708ce27104165da758a6add24c1bdc93ac8986
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: b536e0b5cf595d3c64908ee7b2cc7d56f1f9e2cee7daec203072cec3a819380af65ea9e6cad5b80257582eae28c6dee4ce56471b485319410b5dc7b825446de3
|
7
|
+
data.tar.gz: 43f8f2dd27431ec8d0e5091867d606ac9b9dc3b393c7dffeb64fe2bb0270319f03130d9c2a0bbf7ae7d439d0688f1c506ff6dfb3f1508518ed928a4e48f553e6
|
data/.gitignore
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 peter.c.camilleri@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.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2019 PeterCamilleri
|
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,51 @@
|
|
1
|
+
# MakeGem
|
2
|
+
|
3
|
+
Rails is opinionated. Bundler, it seems, is opinionated too. News flash! So am
|
4
|
+
I. I finally got tired of spending an hour whipping gem scaffolding into shape
|
5
|
+
and decided to create my own hack to the bundle gem command.
|
6
|
+
|
7
|
+
Here it is!
|
8
|
+
|
9
|
+
## Installation
|
10
|
+
|
11
|
+
Just install it yourself as:
|
12
|
+
|
13
|
+
$ gem install make_gem
|
14
|
+
|
15
|
+
## Usage
|
16
|
+
|
17
|
+
make_gem <gem_name> {-d}
|
18
|
+
|
19
|
+
Where
|
20
|
+
* <gem_name> is the name of the gem to be created.
|
21
|
+
* -d is an optional debug option that makes the program rather more verbose.
|
22
|
+
|
23
|
+
The command to be executed in the parent of the folder you want the gem to be
|
24
|
+
created in.
|
25
|
+
|
26
|
+
For safety, you will be shown the key parameters of the gem creation and given
|
27
|
+
a go/no go (y/n) choice.
|
28
|
+
|
29
|
+
## Contributing
|
30
|
+
1. Fork it
|
31
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
32
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
33
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
34
|
+
5. Create new Pull Request
|
35
|
+
|
36
|
+
OR...
|
37
|
+
|
38
|
+
* Make a suggestion by raising an
|
39
|
+
[issue](https://github.com/PeterCamilleri/make_gem/issues)
|
40
|
+
. All ideas and comments are welcome.
|
41
|
+
|
42
|
+
## License
|
43
|
+
|
44
|
+
The gem is available as open source under the terms of the
|
45
|
+
[MIT License](./LICENSE.txt).
|
46
|
+
|
47
|
+
## Code of Conduct
|
48
|
+
|
49
|
+
Everyone interacting in the mini_erb project’s codebases, issue trackers,
|
50
|
+
chat rooms and mailing lists is expected to follow the
|
51
|
+
[code of conduct](./CODE_OF_CONDUCT.md).
|
data/exe/make_gem
ADDED
data/lib/make_gem.rb
ADDED
@@ -0,0 +1,137 @@
|
|
1
|
+
# Build a gem framework without having to hack a ton of stuff.
|
2
|
+
|
3
|
+
require 'erb'
|
4
|
+
require 'bundler'
|
5
|
+
require_relative 'make_gem/version'
|
6
|
+
require_relative 'make_gem/process'
|
7
|
+
|
8
|
+
module MakeGem
|
9
|
+
|
10
|
+
def self.make_gem(args)
|
11
|
+
puts "make gem utility version: #{::MakeGem::VERSION}"
|
12
|
+
|
13
|
+
# Check parameter and extract data.
|
14
|
+
if args.empty?
|
15
|
+
puts "Usage: make_gem your_gem_name {-d}", ""
|
16
|
+
exit
|
17
|
+
end
|
18
|
+
|
19
|
+
gem_name = args[0]
|
20
|
+
|
21
|
+
if gem_name !~ /\A[a-z][a-z0-9_]*\z/
|
22
|
+
puts "ERROR: Invalid gem name: #{gem_name.inspect}", ""
|
23
|
+
exit
|
24
|
+
end
|
25
|
+
|
26
|
+
$debug = (args[1] == "-d")
|
27
|
+
|
28
|
+
class_name = gem_name.split("_").map(&:capitalize).join
|
29
|
+
user_name = (%x{git config --global user.name}).chomp
|
30
|
+
user_email = (%x{git config --global user.email}).chomp
|
31
|
+
here = Dir.pwd + "/"
|
32
|
+
there = here + gem_name + "/"
|
33
|
+
make_gem = File.expand_path(File.dirname(__FILE__)) + "/"
|
34
|
+
template = make_gem + "template/"
|
35
|
+
bundler = Bundler::VERSION.partition(/\d\.\d+/)[1]
|
36
|
+
|
37
|
+
if File.exists?(there)
|
38
|
+
puts "ERROR: The folder #{there} already exists."
|
39
|
+
exit
|
40
|
+
end
|
41
|
+
|
42
|
+
evaluator = binding
|
43
|
+
|
44
|
+
puts "Creating gem = #{gem_name}"
|
45
|
+
puts "Module name = #{class_name}" if $debug
|
46
|
+
puts "User name = #{user_name.inspect}"
|
47
|
+
puts "User email = #{user_email.inspect}"
|
48
|
+
puts "Current folder = #{here}" if $debug
|
49
|
+
puts "Target folder = #{there}"
|
50
|
+
puts "Gem folder = #{make_gem}" if $debug
|
51
|
+
puts "Template folder = #{template}" if $debug
|
52
|
+
puts "Bundler version = #{bundler}" if $debug
|
53
|
+
puts
|
54
|
+
|
55
|
+
# Verify that we may proceed.
|
56
|
+
print "Proceed? (y/n): "
|
57
|
+
exit unless STDIN.gets[0] == "y"
|
58
|
+
|
59
|
+
# Process the request.
|
60
|
+
|
61
|
+
puts "0. Establishing starting point."
|
62
|
+
%x{bundle gem #{gem_name}}
|
63
|
+
Dir.chdir(gem_name)
|
64
|
+
%x{git commit -m "Initial commit from bundler."}
|
65
|
+
|
66
|
+
puts "1. Removing extraneous files."
|
67
|
+
%x{git rm .travis.yml}
|
68
|
+
%x{git rm bin/console}
|
69
|
+
%x{git rm bin/setup}
|
70
|
+
%x{git commit -m "Fix phase 1"}
|
71
|
+
|
72
|
+
puts "2. Rename the rake file."
|
73
|
+
%x{git mv Rakefile rakefile.rb\n}
|
74
|
+
%x{git commit -m "Fix phase 2"}
|
75
|
+
|
76
|
+
puts "3. Fix up the code files."
|
77
|
+
MakeGem.process(template + "version.erb",
|
78
|
+
there + "lib/" + gem_name + "/version.rb",
|
79
|
+
evaluator)
|
80
|
+
|
81
|
+
MakeGem.process(template + "gem_main.erb",
|
82
|
+
there + "lib/" + gem_name + ".rb",
|
83
|
+
evaluator)
|
84
|
+
|
85
|
+
%x{git add .}
|
86
|
+
%x{git commit -m "Fix phase 3"}
|
87
|
+
|
88
|
+
puts "4. Fix up the test files."
|
89
|
+
%x{git rm test/test_helper.rb}
|
90
|
+
|
91
|
+
MakeGem.process(template + "gem_test.erb",
|
92
|
+
there + "test/" + gem_name + "_test.rb",
|
93
|
+
evaluator)
|
94
|
+
|
95
|
+
%x{git add .}
|
96
|
+
%x{git commit -m "Fix phase 4"}
|
97
|
+
|
98
|
+
puts "5. Fix up the readme file."
|
99
|
+
|
100
|
+
MakeGem.process(template + "README.erb",
|
101
|
+
there + "README.md",
|
102
|
+
evaluator)
|
103
|
+
|
104
|
+
%x{git add .}
|
105
|
+
%x{git commit -m "Fix phase 5"}
|
106
|
+
|
107
|
+
puts "6. Fix up the gem specification file."
|
108
|
+
|
109
|
+
MakeGem.process(template + "gem_spec.erb",
|
110
|
+
there + gem_name + ".gemspec",
|
111
|
+
evaluator)
|
112
|
+
|
113
|
+
%x{git add .}
|
114
|
+
%x{git commit -m "Fix phase 6"}
|
115
|
+
|
116
|
+
puts "7. Fix up the rake file."
|
117
|
+
|
118
|
+
MakeGem.process(template + "rakefile.erb",
|
119
|
+
there + "rakefile.rb",
|
120
|
+
evaluator)
|
121
|
+
|
122
|
+
%x{git add .}
|
123
|
+
%x{git commit -m "Fix phase 6"}
|
124
|
+
|
125
|
+
puts
|
126
|
+
puts "To connect to github, use:"
|
127
|
+
puts "git remote add origin https://github.com/#{user_name}/#{gem_name}.git"
|
128
|
+
puts "git push -u origin master"
|
129
|
+
puts
|
130
|
+
|
131
|
+
puts "** Done. **"
|
132
|
+
end
|
133
|
+
end
|
134
|
+
|
135
|
+
if __FILE__ == $0
|
136
|
+
MakeGem.make_gem(ARGV)
|
137
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
# MakeGem
|
2
|
+
|
3
|
+
WIP
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem '<%= gem_name %>'
|
11
|
+
```
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle
|
16
|
+
|
17
|
+
Or install it yourself as:
|
18
|
+
|
19
|
+
$ gem install <%= gem_name %>
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
WIP
|
24
|
+
|
25
|
+
## Contributing
|
26
|
+
1. Fork it
|
27
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
28
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
29
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
30
|
+
5. Create new Pull Request
|
31
|
+
|
32
|
+
OR...
|
33
|
+
|
34
|
+
* Make a suggestion by raising an
|
35
|
+
[issue](https://github.com/<%= user_name %>/<%= gem_name %>/issues)
|
36
|
+
. All ideas and comments are welcome.
|
37
|
+
|
38
|
+
## License
|
39
|
+
|
40
|
+
The gem is available as open source under the terms of the
|
41
|
+
[MIT License](./LICENSE.txt).
|
42
|
+
|
43
|
+
## Code of Conduct
|
44
|
+
|
45
|
+
Everyone interacting in the mini_erb project’s codebases, issue trackers,
|
46
|
+
chat rooms and mailing lists is expected to follow the
|
47
|
+
[code of conduct](./CODE_OF_CONDUCT.md).
|
@@ -0,0 +1,30 @@
|
|
1
|
+
lib = File.expand_path("../lib", __FILE__)
|
2
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
|
+
require "<%= gem_name %>/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = "<%= gem_name %>"
|
7
|
+
spec.version = <%= class_name %>::VERSION
|
8
|
+
spec.authors = ["<%= user_name %>"]
|
9
|
+
spec.email = ["<%= user_email %>"]
|
10
|
+
|
11
|
+
spec.summary = <%= class_name %>::DESCRIPTION
|
12
|
+
spec.description = "TODO: A longer description or just delete this line."
|
13
|
+
spec.homepage = "https://github.com/<%= user_name %>/<%= gem_name %>"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
17
|
+
f.match(%r{^(test|docs)/})
|
18
|
+
end
|
19
|
+
spec.bindir = "exe"
|
20
|
+
spec.executables = spec
|
21
|
+
.files
|
22
|
+
.reject { |f| f.downcase == 'exe/readme.md'}
|
23
|
+
.grep(%r{^exe/}) { |f| File.basename(f) }
|
24
|
+
spec.require_paths = ["lib"]
|
25
|
+
|
26
|
+
spec.add_development_dependency "bundler", "~> <%= bundler %>"
|
27
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
28
|
+
spec.add_development_dependency "minitest", "~> 5.0"
|
29
|
+
spec.add_development_dependency 'minitest_visible', "~> 0.1"
|
30
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
require_relative '../lib/<%= gem_name %>'
|
2
|
+
require 'minitest/autorun'
|
3
|
+
require 'minitest_visible'
|
4
|
+
|
5
|
+
class <%= class_name %>Test < Minitest::Test
|
6
|
+
def test_that_it_has_a_version_number
|
7
|
+
refute_nil(::<%= class_name %>::VERSION)
|
8
|
+
assert(::<%= class_name %>::VERSION.frozen?)
|
9
|
+
assert(::<%= class_name %>::VERSION.is_a?(String))
|
10
|
+
assert(/\A\d+\.\d+\.\d+/ =~ ::<%= class_name %>::VERSION)
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_that_it_has_a_description
|
14
|
+
refute_nil(::<%= class_name %>::DESCRIPTION)
|
15
|
+
assert(::<%= class_name %>::DESCRIPTION.frozen?)
|
16
|
+
assert(::<%= class_name %>::DESCRIPTION.is_a?(String))
|
17
|
+
end
|
18
|
+
|
19
|
+
def test_it_does_something_useful
|
20
|
+
assert(false)
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
2
|
+
require "rake/testtask"
|
3
|
+
|
4
|
+
Rake::TestTask.new(:test) do |t|
|
5
|
+
t.libs << "test"
|
6
|
+
t.libs << "lib"
|
7
|
+
t.test_files = FileList["test/**/*_test.rb"]
|
8
|
+
end
|
9
|
+
|
10
|
+
task :default => :test
|
11
|
+
|
12
|
+
desc "What version of <%= gem_name %> is this?"
|
13
|
+
task :vers do |t|
|
14
|
+
puts
|
15
|
+
puts "<%= gem_name %> version = #{::<%= class_name %>::VERSION}"
|
16
|
+
end
|
data/make_gem.gemspec
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
lib = File.expand_path("../lib", __FILE__)
|
2
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
|
+
require "make_gem/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = "make_gem"
|
7
|
+
spec.version = MakeGem::VERSION
|
8
|
+
spec.authors = ["PeterCamilleri"]
|
9
|
+
spec.email = ["peter.c.camilleri@gmail.com"]
|
10
|
+
|
11
|
+
spec.summary = MakeGem::DESCRIPTION
|
12
|
+
spec.description = "A script to construct a gem skeleton in the manner desirable to me."
|
13
|
+
spec.homepage = "https://github.com/PeterCamilleri/make_gem"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
17
|
+
f.match(%r{^(test|docs)/})
|
18
|
+
end
|
19
|
+
spec.bindir = "exe"
|
20
|
+
spec.executables = spec
|
21
|
+
.files
|
22
|
+
.reject { |f| f.downcase == 'exe/readme.md'}
|
23
|
+
.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 'minitest_visible', "~> 0.1"
|
30
|
+
end
|
data/rakefile.rb
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
2
|
+
require "rake/testtask"
|
3
|
+
|
4
|
+
Rake::TestTask.new(:test) do |t|
|
5
|
+
t.libs << "test"
|
6
|
+
t.libs << "lib"
|
7
|
+
t.test_files = FileList["test/**/*_test.rb"]
|
8
|
+
end
|
9
|
+
|
10
|
+
task :default => :test
|
11
|
+
|
12
|
+
desc "What version of make_gem is this?"
|
13
|
+
task :vers do |t|
|
14
|
+
puts
|
15
|
+
puts "make_gem version = #{::MakeGem::VERSION}"
|
16
|
+
end
|
metadata
ADDED
@@ -0,0 +1,118 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: make_gem
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- PeterCamilleri
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-02-21 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: minitest_visible
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0.1'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0.1'
|
69
|
+
description: A script to construct a gem skeleton in the manner desirable to me.
|
70
|
+
email:
|
71
|
+
- peter.c.camilleri@gmail.com
|
72
|
+
executables:
|
73
|
+
- make_gem
|
74
|
+
extensions: []
|
75
|
+
extra_rdoc_files: []
|
76
|
+
files:
|
77
|
+
- ".gitignore"
|
78
|
+
- CODE_OF_CONDUCT.md
|
79
|
+
- Gemfile
|
80
|
+
- LICENSE.txt
|
81
|
+
- README.md
|
82
|
+
- exe/make_gem
|
83
|
+
- lib/make_gem.rb
|
84
|
+
- lib/make_gem/process.rb
|
85
|
+
- lib/make_gem/version.rb
|
86
|
+
- lib/template/README.erb
|
87
|
+
- lib/template/gem_main.erb
|
88
|
+
- lib/template/gem_spec.erb
|
89
|
+
- lib/template/gem_test.erb
|
90
|
+
- lib/template/rakefile.erb
|
91
|
+
- lib/template/version.erb
|
92
|
+
- make_gem.gemspec
|
93
|
+
- rakefile.rb
|
94
|
+
homepage: https://github.com/PeterCamilleri/make_gem
|
95
|
+
licenses:
|
96
|
+
- MIT
|
97
|
+
metadata: {}
|
98
|
+
post_install_message:
|
99
|
+
rdoc_options: []
|
100
|
+
require_paths:
|
101
|
+
- lib
|
102
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
103
|
+
requirements:
|
104
|
+
- - ">="
|
105
|
+
- !ruby/object:Gem::Version
|
106
|
+
version: '0'
|
107
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
108
|
+
requirements:
|
109
|
+
- - ">="
|
110
|
+
- !ruby/object:Gem::Version
|
111
|
+
version: '0'
|
112
|
+
requirements: []
|
113
|
+
rubyforge_project:
|
114
|
+
rubygems_version: 2.5.2
|
115
|
+
signing_key:
|
116
|
+
specification_version: 4
|
117
|
+
summary: 'make_gem: Create a gem frame work ready to begin useful work.'
|
118
|
+
test_files: []
|