bundlegem 0.0.15 → 0.1.1
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/README.md +2 -7
- data/bundlegem.gemspec +30 -19
- data/lib/bundlegem/cli/gem.rb +27 -21
- data/lib/bundlegem/templates/cli_gem/gitignore.tt +0 -1
- data/lib/bundlegem/templates/test_template/#{name}/keep.tt +0 -0
- data/lib/bundlegem/templates/test_template/#{name}.rb.tt +11 -0
- data/lib/bundlegem/templates/test_template/#{underscored_name}/keep.tt +0 -0
- data/lib/bundlegem/templates/test_template/simple_dir/keep.tt +0 -0
- data/lib/bundlegem/version.rb +1 -1
- data/spec/bundlegem_spec.rb +32 -0
- data/spec/data/variable_manifest_test.rb +11 -0
- data/spec/spec_helper.rb +9 -6
- metadata +46 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ca33941473a43a89745d74fba7d815ceae364f0f7514d8d63db538c3178cde54
|
4
|
+
data.tar.gz: 5032d292e973052403c142088e5e358718e22e819b94af74e39f238a2daf9b28
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ba17e06fe7f97d46af8cbe3e8212d2094eb3bfbc925f546ae3598425c0a3185b1f99295b7e25dd6899c2ce1e412389a326e001798bf423a08a639707c8928e7a
|
7
|
+
data.tar.gz: 89a207b4241e8ad8fd89e8b6bcc81489daece88e3dc14dc0325a960792f231a0d40ca6c6aeaf042912e0c6b3eeb9b1c98cacd416ae6b0d0c757b4fdfcc0f7b73
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# BundleGem: A Gem Project Generator with User Defined Templates
|
2
2
|
|
3
|
-
Alot of the code here was extracted from Bundler's `bundle gem` command, so credits to Bundler folks. Originally I planned to make the new features accessible to the Bundler team and so tried to keep the code as similar to their project as possible, but ultimately discovered that they don't want to
|
3
|
+
Note: Alot of the code here was extracted from Bundler's `bundle gem` command, so credits to the Bundler folks. Originally I planned to make the new features accessible to the Bundler team and so tried to keep the code as similar to their project as possible, but ultimately discovered that they don't want to grow this feature because good tools should do a single thing very well (manage dependencies), not many things (manage dependencies and also do random other helpful stuff). Also it's a profoundly common dependency meaning every change is high stakes.
|
4
4
|
|
5
5
|
The goal of the project is to allow users to define templates in the most native form to all technologist: Directory Structures, short commands, and helpful commands which make the gem's usage completely visible!
|
6
6
|
|
@@ -54,7 +54,7 @@ $ bundlegem project_name -t my_service
|
|
54
54
|
|
55
55
|
## Customizing Your Own Templates
|
56
56
|
|
57
|
-
Place your own templates in `~/.bunglegem/templates`. You can populate it with examples by running `bundlegem --install-best-templates`
|
57
|
+
Place your own templates in `~/.bunglegem/templates`. You can populate it with examples by running `bundlegem --install-best-templates` which will effectively clone down a few sample git repos into the templates folder for you such as [Go-Cli](https://github.com/TheNotary/go-cli) for instance.
|
58
58
|
|
59
59
|
You'll get a good idea as to the possibilities by inspecting the files in [templates](https://github.com/TheNotary/bundlegem/tree/master/lib/bundlegem/templates/newgem). Some quick tips follow:
|
60
60
|
|
@@ -63,8 +63,3 @@ You'll get a good idea as to the possibilities by inspecting the files in [templ
|
|
63
63
|
- Within files, use `<%=config[:namespaced_path]%>` to have that reinterpreted as just the file name with underscores
|
64
64
|
- Have a look [under the hood](https://github.com/TheNotary/bundlegem/blob/master/lib/bundlegem/cli/gem.rb#L30-L43) to see other options and the context where the ERB.new takes place.
|
65
65
|
|
66
|
-
|
67
|
-
### Contributing
|
68
|
-
|
69
|
-
Please feel free to speak up using the issue section if there's anything on your mind :)
|
70
|
-
Do the usual fork routine and issue a pull request by all means.
|
data/bundlegem.gemspec
CHANGED
@@ -3,26 +3,37 @@ lib = File.expand_path('../lib', __FILE__)
|
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
4
|
require 'bundlegem/version'
|
5
5
|
|
6
|
-
|
7
|
-
spec.name = "bundlegem"
|
8
|
-
spec.version = Bundlegem::VERSION
|
9
|
-
spec.authors = ["TheNotary"]
|
10
|
-
spec.email = ["no@mail.plz"]
|
11
|
-
spec.summary = %q{this gem makes more gems!}
|
12
|
-
spec.description = %q{ I KNOW! ISN'T THAT LIKE WISHING FOR MORE WISHES!}
|
13
|
-
spec.homepage = ""
|
14
|
-
spec.license = "MIT"
|
6
|
+
version = Bundlegem::VERSION
|
15
7
|
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
8
|
+
Gem::Specification.new do |s|
|
9
|
+
s.name = "bundlegem"
|
10
|
+
s.version = version
|
11
|
+
s.authors = ["TheNotary"]
|
12
|
+
s.email = ["no@mail.plz"]
|
13
|
+
s.summary = %q{This gem makes more gems!}
|
14
|
+
s.description = %q{ This is a gem for making more gems! I KNOW! ISN'T THAT LIKE WISHING FOR MORE WISHES!}
|
15
|
+
s.homepage = "https://github.com/thenotary/bundlegem"
|
16
|
+
s.license = "MIT"
|
20
17
|
|
21
|
-
|
22
|
-
|
18
|
+
s.metadata = {
|
19
|
+
"bug_tracker_uri" => "https://github.com/TheNotary/bundlegem/issues",
|
20
|
+
"changelog_uri" => "https://github.com/TheNotary/bundlegem/releases/tag/v#{version}",
|
21
|
+
"documentation_uri" => "https://api.rubyonrails.org/v#{version}/",
|
22
|
+
"source_code_uri" => "https://github.com/TheNotary/bundlegem/tree/v#{version}",
|
23
|
+
}
|
23
24
|
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
25
|
+
s.files = `git ls-files -z`.split("\x0")
|
26
|
+
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
27
|
+
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
28
|
+
s.require_paths = ["lib"]
|
29
|
+
|
30
|
+
s.add_dependency "thor", "0.19.1"
|
31
|
+
s.add_dependency "bundler", "~> 2.5"
|
32
|
+
s.add_dependency "ostruct"
|
33
|
+
s.add_dependency "reline"
|
34
|
+
|
35
|
+
#s.add_development_dependency "bundler"#, "~> 1.8"
|
36
|
+
s.add_development_dependency "rake", "~> 13.2"
|
37
|
+
s.add_development_dependency "rspec"
|
38
|
+
s.add_development_dependency "pry"
|
28
39
|
end
|
data/lib/bundlegem/cli/gem.rb
CHANGED
@@ -14,9 +14,7 @@ module Bundlegem
|
|
14
14
|
validate_ext_name if options[:ext]
|
15
15
|
end
|
16
16
|
|
17
|
-
def
|
18
|
-
raise_project_with_that_name_already_exists! if File.exist?(target)
|
19
|
-
|
17
|
+
def build_interpolation_config
|
20
18
|
underscored_name = name.tr('-', '_')
|
21
19
|
namespaced_path = name.tr('-', '/')
|
22
20
|
constant_name = name.split('_').map{|p| p[0..0].upcase + p[1..-1] unless p.empty?}.join
|
@@ -41,11 +39,20 @@ module Bundlegem
|
|
41
39
|
:bin => options[:bin],
|
42
40
|
:bundler_version => bundler_dependency_version
|
43
41
|
}
|
44
|
-
|
42
|
+
end
|
43
|
+
|
44
|
+
def config
|
45
|
+
@config ||= build_interpolation_config
|
46
|
+
end
|
47
|
+
|
48
|
+
def run
|
49
|
+
raise_project_with_that_name_already_exists! if File.exist?(target)
|
50
|
+
|
51
|
+
ensure_safe_gem_name(name, config[:constant_array])
|
45
52
|
|
46
53
|
template_src = match_template_src
|
47
54
|
template_directories = dynamically_generate_template_directories
|
48
|
-
templates = dynamically_generate_templates
|
55
|
+
templates = dynamically_generate_templates
|
49
56
|
|
50
57
|
puts "Creating new project folder '#{name}'\n\n"
|
51
58
|
create_template_directories(template_directories, target)
|
@@ -54,7 +61,6 @@ module Bundlegem
|
|
54
61
|
template("#{template_src}/#{src}", target.join(dst), config)
|
55
62
|
end
|
56
63
|
|
57
|
-
|
58
64
|
# Bundler.ui.info "Initializing git repo in #{target}"
|
59
65
|
Dir.chdir(target) { `git init`; `git add .` }
|
60
66
|
|
@@ -70,8 +76,8 @@ module Bundlegem
|
|
70
76
|
|
71
77
|
private
|
72
78
|
|
79
|
+
# Returns a hash of source directory names and their destination mappings
|
73
80
|
def dynamically_generate_template_directories
|
74
|
-
# return nil if options["template"].nil?
|
75
81
|
template_src = TemplateManager.get_template_src(options)
|
76
82
|
|
77
83
|
template_dirs = {}
|
@@ -121,22 +127,22 @@ module Bundlegem
|
|
121
127
|
|
122
128
|
# Figures out the translation between all the .tt file to their
|
123
129
|
# destination names
|
124
|
-
def dynamically_generate_templates
|
125
|
-
|
126
|
-
# return generate_templates_for_built_in_gems(config)
|
127
|
-
#else
|
128
|
-
template_src = TemplateManager.get_template_src(options)
|
129
|
-
|
130
|
-
templates = {}
|
131
|
-
Dir.glob("#{template_src}/**/{*,.*}.tt").each do |f|
|
132
|
-
base_path = f[template_src.length+1..-1]
|
133
|
-
templates.merge!(base_path => base_path.gsub(/\.tt$/, "").gsub('#{name}', "#{name}") )
|
134
|
-
end
|
130
|
+
def dynamically_generate_templates
|
131
|
+
template_src = TemplateManager.get_template_src(options)
|
135
132
|
|
136
|
-
|
133
|
+
templates = {}
|
134
|
+
Dir.glob("#{template_src}/**/{*,.*}.tt").each do |f|
|
135
|
+
base_path = f[template_src.length+1..-1]
|
136
|
+
templates.merge!(base_path => base_path
|
137
|
+
.gsub(/\.tt$/, "")
|
138
|
+
.gsub('#{name}', "#{name}")
|
139
|
+
.gsub('#{underscored_name}', config[:underscored_name])
|
140
|
+
)
|
141
|
+
end
|
137
142
|
|
138
|
-
|
139
|
-
|
143
|
+
raise_no_files_in_template_error! if templates.empty?
|
144
|
+
|
145
|
+
return templates
|
140
146
|
end
|
141
147
|
|
142
148
|
def create_template_directories(template_directories, target)
|
File without changes
|
@@ -0,0 +1,11 @@
|
|
1
|
+
This file shows all the variables in one place!
|
2
|
+
|
3
|
+
config[:name]: <%= config[:name] %>
|
4
|
+
config[:underscored_name]: <%= config[:underscored_name] %>
|
5
|
+
config[:namespaced_path]: <%= config[:namespaced_path] %>
|
6
|
+
config[:makefile_path]: <%= config[:makefile_path] %>
|
7
|
+
config[:constant_name]: <%= config[:constant_name] %>
|
8
|
+
config[:constant_array]: <%= config[:constant_array] %>
|
9
|
+
config[:author]: <%= config[:author] %>
|
10
|
+
config[:email]: <%= config[:email] %>
|
11
|
+
config[:git_repo_url]: <%= config[:git_repo_url] %>
|
File without changes
|
File without changes
|
data/lib/bundlegem/version.rb
CHANGED
data/spec/bundlegem_spec.rb
CHANGED
@@ -49,6 +49,38 @@ describe Bundlegem do
|
|
49
49
|
expect(File.exist?("#{@dst_dir}/#{gem_name}/ext/tmp_gem/#{gem_name}.c")).to be_truthy
|
50
50
|
end
|
51
51
|
|
52
|
+
it "has a useful dynamically_generate_templates metho" do
|
53
|
+
options = { "bin"=>false, "ext"=>false, :coc=> false, "template" => "test_template" }
|
54
|
+
gem_name = "good-dog"
|
55
|
+
my_gem = Bundlegem::CLI::Gem.new(options, gem_name)
|
56
|
+
|
57
|
+
src_dst_map = my_gem.send('dynamically_generate_template_directories')
|
58
|
+
|
59
|
+
expect(src_dst_map['#{name}']).to eq "good-dog"
|
60
|
+
expect(src_dst_map['#{underscored_name}']).to eq '#{underscored_name}'
|
61
|
+
expect(src_dst_map['simple_dir']).to eq 'simple_dir'
|
62
|
+
end
|
63
|
+
|
64
|
+
it "has a useful dynamically_generate_templates method" do
|
65
|
+
options = { "bin"=>false, "ext"=>false, :coc=> false, "template" => "test_template" }
|
66
|
+
gem_name = "good-dog"
|
67
|
+
my_gem = Bundlegem::CLI::Gem.new(options, gem_name)
|
68
|
+
|
69
|
+
src_dst_map = my_gem.send('dynamically_generate_templates')
|
70
|
+
|
71
|
+
expect(src_dst_map['#{name}/keep.tt']).to eq "good-dog/keep"
|
72
|
+
expect(src_dst_map['#{name}.rb.tt']).to eq 'good-dog.rb'
|
73
|
+
expect(src_dst_map['#{underscored_name}/keep.tt']).to eq 'good_dog/keep'
|
74
|
+
expect(src_dst_map['simple_dir/keep.tt']).to eq 'simple_dir/keep'
|
75
|
+
end
|
76
|
+
|
77
|
+
it "has a test proving every interpolation in one file" do
|
78
|
+
options = { "bin"=>false, "ext"=>false, :coc=> false, "template" => "test_template" }
|
79
|
+
gem_name = "good-dog"
|
80
|
+
|
81
|
+
capture_stdout { Bundlegem.gem(options, gem_name) }
|
82
|
+
expect(File.read("#{@dst_dir}/#{gem_name}/#{gem_name}.rb")).to eq File.read("#{ENV['SPEC_DATA_DIR']}/variable_manifest_test.rb")
|
83
|
+
end
|
52
84
|
|
53
85
|
describe "install best templates" do
|
54
86
|
|
@@ -0,0 +1,11 @@
|
|
1
|
+
This file shows all the variables in one place!
|
2
|
+
|
3
|
+
config[:name]: good-dog
|
4
|
+
config[:underscored_name]: good_dog
|
5
|
+
config[:namespaced_path]: good/dog
|
6
|
+
config[:makefile_path]: good_dog/good_dog
|
7
|
+
config[:constant_name]: Good::Dog
|
8
|
+
config[:constant_array]: ["Good", "Dog"]
|
9
|
+
config[:author]: test
|
10
|
+
config[:email]: you@example.com
|
11
|
+
config[:git_repo_url]: https://github.com/test/good_dog
|
data/spec/spec_helper.rb
CHANGED
@@ -1,23 +1,22 @@
|
|
1
1
|
$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
|
2
2
|
$test_env = true
|
3
3
|
require 'bundlegem'
|
4
|
+
require 'bundlegem/cli'
|
5
|
+
require 'bundlegem/cli/gem'
|
4
6
|
require 'fileutils'
|
5
7
|
require 'pry'
|
6
8
|
|
7
9
|
# Mock our home directory
|
8
|
-
|
9
10
|
ENV['HOME'] = "/tmp/bundlegem_mock_home"
|
10
|
-
|
11
|
-
|
12
|
-
|
11
|
+
ENV['SPEC_DATA_DIR'] = File.expand_path("./spec/data") # I fell into this from sloppy chdir handling, bad CLI/ API isolation.
|
13
12
|
|
14
13
|
|
15
14
|
def setup_mock_web_template
|
16
15
|
ENV['best_templates'] = "#{ENV['HOME']}/arduino.git"
|
17
16
|
FileUtils.mkdir("#{ENV['HOME']}/arduino.git")
|
18
17
|
FileUtils.touch("#{ENV['HOME']}/arduino.git/README.md")
|
19
|
-
|
20
|
-
`cd "#{ENV['HOME']}/arduino.git" && git init &&
|
18
|
+
|
19
|
+
`cd "#{ENV['HOME']}/arduino.git" && git init && git add . && git commit -m "haxing"`
|
21
20
|
end
|
22
21
|
|
23
22
|
def remove_mock_web_template
|
@@ -43,6 +42,10 @@ def reset_test_env
|
|
43
42
|
|
44
43
|
FileUtils.mkdir_p @dst_dir
|
45
44
|
FileUtils.mkdir_p @template_root
|
45
|
+
FileUtils.cd @dst_dir
|
46
|
+
auth_settings = 'git config --global user.email "you@example.com" && git config --global user.name "test"'
|
47
|
+
|
48
|
+
`git config --global init.defaultBranch main && #{auth_settings}`
|
46
49
|
end
|
47
50
|
|
48
51
|
# squelch stdout
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bundlegem
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- TheNotary
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date: 2025-
|
10
|
+
date: 2025-03-27 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: thor
|
@@ -38,6 +37,34 @@ dependencies:
|
|
38
37
|
- - "~>"
|
39
38
|
- !ruby/object:Gem::Version
|
40
39
|
version: '2.5'
|
40
|
+
- !ruby/object:Gem::Dependency
|
41
|
+
name: ostruct
|
42
|
+
requirement: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - ">="
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '0'
|
47
|
+
type: :runtime
|
48
|
+
prerelease: false
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
54
|
+
- !ruby/object:Gem::Dependency
|
55
|
+
name: reline
|
56
|
+
requirement: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - ">="
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '0'
|
61
|
+
type: :runtime
|
62
|
+
prerelease: false
|
63
|
+
version_requirements: !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
65
|
+
- - ">="
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: '0'
|
41
68
|
- !ruby/object:Gem::Dependency
|
42
69
|
name: rake
|
43
70
|
requirement: !ruby/object:Gem::Requirement
|
@@ -80,7 +107,8 @@ dependencies:
|
|
80
107
|
- - ">="
|
81
108
|
- !ruby/object:Gem::Version
|
82
109
|
version: '0'
|
83
|
-
description: " I KNOW! ISN'T THAT LIKE WISHING
|
110
|
+
description: " This is a gem for making more gems! I KNOW! ISN'T THAT LIKE WISHING
|
111
|
+
FOR MORE WISHES!"
|
84
112
|
email:
|
85
113
|
- no@mail.plz
|
86
114
|
executables:
|
@@ -167,14 +195,22 @@ files:
|
|
167
195
|
- lib/bundlegem/templates/newgem/rspec.tt
|
168
196
|
- lib/bundlegem/templates/newgem/spec/#{name}_spec.rb.tt
|
169
197
|
- lib/bundlegem/templates/newgem/spec/spec_helper.rb.tt
|
198
|
+
- lib/bundlegem/templates/test_template/#{name}.rb.tt
|
199
|
+
- lib/bundlegem/templates/test_template/#{name}/keep.tt
|
200
|
+
- lib/bundlegem/templates/test_template/#{underscored_name}/keep.tt
|
201
|
+
- lib/bundlegem/templates/test_template/simple_dir/keep.tt
|
170
202
|
- lib/bundlegem/version.rb
|
171
203
|
- spec/bundlegem_spec.rb
|
204
|
+
- spec/data/variable_manifest_test.rb
|
172
205
|
- spec/spec_helper.rb
|
173
|
-
homepage:
|
206
|
+
homepage: https://github.com/thenotary/bundlegem
|
174
207
|
licenses:
|
175
208
|
- MIT
|
176
|
-
metadata:
|
177
|
-
|
209
|
+
metadata:
|
210
|
+
bug_tracker_uri: https://github.com/TheNotary/bundlegem/issues
|
211
|
+
changelog_uri: https://github.com/TheNotary/bundlegem/releases/tag/v0.1.1
|
212
|
+
documentation_uri: https://api.rubyonrails.org/v0.1.1/
|
213
|
+
source_code_uri: https://github.com/TheNotary/bundlegem/tree/v0.1.1
|
178
214
|
rdoc_options: []
|
179
215
|
require_paths:
|
180
216
|
- lib
|
@@ -189,10 +225,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
189
225
|
- !ruby/object:Gem::Version
|
190
226
|
version: '0'
|
191
227
|
requirements: []
|
192
|
-
rubygems_version: 3.
|
193
|
-
signing_key:
|
228
|
+
rubygems_version: 3.6.2
|
194
229
|
specification_version: 4
|
195
|
-
summary:
|
230
|
+
summary: This gem makes more gems!
|
196
231
|
test_files:
|
197
232
|
- spec/bundlegem_spec.rb
|
233
|
+
- spec/data/variable_manifest_test.rb
|
198
234
|
- spec/spec_helper.rb
|