card_holder_generator 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/.ruby-version +1 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +35 -0
- data/README.md +39 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/card_holder_generator.gemspec +25 -0
- data/exe/card_holder_generator +64 -0
- data/lib/card_holder_generator/version.rb +3 -0
- data/lib/card_holder_generator.rb +95 -0
- metadata +103 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: c1fd3cccc50e2b1b3ac4b74e0d1138dbefc6bad9
|
4
|
+
data.tar.gz: 59f752bc9970038952be9030db10d47c0d4b968b
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: dd62d3943f98a589271a1690337258ebc48aa3846a46d84fde8bfccb169a40999077e78af1a6d75e693cf3f544a91ea316afdab999157882e592b3cd46423dff
|
7
|
+
data.tar.gz: 9710cf34f6872ccecce04a2fb06fb9e4de8de66711259acae33c9937c9a08cfd6426e3082994b52dfd5d7d28cbb2a4aa956b0149d1751c3224d56fca339d5b17
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.4.3
|
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 hola@carlosparamio.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/Gemfile.lock
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
card_holder_generator (0.1.0)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
diff-lcs (1.3)
|
10
|
+
rake (10.5.0)
|
11
|
+
rspec (3.7.0)
|
12
|
+
rspec-core (~> 3.7.0)
|
13
|
+
rspec-expectations (~> 3.7.0)
|
14
|
+
rspec-mocks (~> 3.7.0)
|
15
|
+
rspec-core (3.7.1)
|
16
|
+
rspec-support (~> 3.7.0)
|
17
|
+
rspec-expectations (3.7.0)
|
18
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
19
|
+
rspec-support (~> 3.7.0)
|
20
|
+
rspec-mocks (3.7.0)
|
21
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
22
|
+
rspec-support (~> 3.7.0)
|
23
|
+
rspec-support (3.7.1)
|
24
|
+
|
25
|
+
PLATFORMS
|
26
|
+
ruby
|
27
|
+
|
28
|
+
DEPENDENCIES
|
29
|
+
bundler (~> 1.16)
|
30
|
+
card_holder_generator!
|
31
|
+
rake (~> 10.0)
|
32
|
+
rspec (~> 3.0)
|
33
|
+
|
34
|
+
BUNDLED WITH
|
35
|
+
1.16.1
|
data/README.md
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
# CardHolderGenerator
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/card_holder_generator`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'card_holder_generator'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install card_holder_generator
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
TODO: Write usage instructions here
|
26
|
+
|
27
|
+
## Development
|
28
|
+
|
29
|
+
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.
|
30
|
+
|
31
|
+
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).
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/card_holder_generator. 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.
|
36
|
+
|
37
|
+
## Code of Conduct
|
38
|
+
|
39
|
+
Everyone interacting in the CardHolderGenerator project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/card_holder_generator/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "card_holder_generator"
|
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
@@ -0,0 +1,25 @@
|
|
1
|
+
lib = File.expand_path("../lib", __FILE__)
|
2
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
|
+
require "card_holder_generator/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = "card_holder_generator"
|
7
|
+
spec.version = CardHolderGenerator::VERSION
|
8
|
+
spec.authors = ["Carlos Paramio"]
|
9
|
+
spec.email = ["hola@carlosparamio.com"]
|
10
|
+
|
11
|
+
spec.summary = %q{Script to generate OpenSCAD files that contains the design for custom card holders.}
|
12
|
+
spec.description = %q{Script to generate OpenSCAD files that contains the design for custom card holders.}
|
13
|
+
spec.homepage = "https://github.com/carlosparamio/card_holder_generator"
|
14
|
+
|
15
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
16
|
+
f.match(%r{^(test|spec|features)/})
|
17
|
+
end
|
18
|
+
spec.bindir = "exe"
|
19
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
20
|
+
spec.require_paths = ["lib"]
|
21
|
+
|
22
|
+
spec.add_development_dependency "bundler", "~> 1.16"
|
23
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
24
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
25
|
+
end
|
@@ -0,0 +1,64 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "card_holder_generator"
|
5
|
+
|
6
|
+
def print_title(string)
|
7
|
+
length = string.length
|
8
|
+
puts "*" * (length + 4)
|
9
|
+
puts "* #{string} *"
|
10
|
+
puts "*" * (length + 4)
|
11
|
+
end
|
12
|
+
|
13
|
+
def get_integer(default = nil)
|
14
|
+
question = "Value (mm)"
|
15
|
+
question += " (default: #{default})" if default
|
16
|
+
question += ": "
|
17
|
+
print question
|
18
|
+
string = gets.chomp
|
19
|
+
string = default if string.empty? && default
|
20
|
+
string.to_i
|
21
|
+
end
|
22
|
+
|
23
|
+
def ask_value(title, description, default = nil)
|
24
|
+
puts
|
25
|
+
print_title(title)
|
26
|
+
puts
|
27
|
+
puts description
|
28
|
+
value = get_integer(default)
|
29
|
+
puts
|
30
|
+
value
|
31
|
+
end
|
32
|
+
|
33
|
+
settings = {}
|
34
|
+
|
35
|
+
settings["external_walls_depth"] = ask_value("External walls depth", "Depth of the walls at both sides (left and right) of the cards holder.", 3)
|
36
|
+
settings["floor_depth"] = ask_value("Floor depth", "Depth of the walls at both sides (left and right) of the cards holder.", 3)
|
37
|
+
settings["top_margin"] = ask_value("Top margin", "Space on top of the cards up to reach the card holder top.", 3)
|
38
|
+
settings["separators_width"] = ask_value("Separators width", "Amount of material that will hold each set of cards on each side (left and right).", 10)
|
39
|
+
settings["separators_depth"] = ask_value("Separators depth", "Depth of the walls that separates each set of cards.", 3)
|
40
|
+
settings["cards_width"] = ask_value("Cards width", "Width of each card including sleeves (this will be the height of the card holder hole without the top margin).")
|
41
|
+
settings["cards_height"] = ask_value("Cards height", "Height of each card including sleeves (this will be the width of the card holder).")
|
42
|
+
|
43
|
+
settings["gap_depths"] = []
|
44
|
+
gap_num = 1
|
45
|
+
|
46
|
+
loop do
|
47
|
+
gap_depth = ask_value("Gap depth ##{gap_num}", "Depth of the ##{gap_num} set of cards; determines size of this card set hole (leave empty to finish).")
|
48
|
+
break if gap_depth == 0
|
49
|
+
settings["gap_depths"] << gap_depth
|
50
|
+
gap_num += 1
|
51
|
+
end
|
52
|
+
|
53
|
+
print_title "Final settings"
|
54
|
+
puts
|
55
|
+
puts settings.inspect
|
56
|
+
puts
|
57
|
+
|
58
|
+
scad = CardHolderGenerator.new(settings).to_scad
|
59
|
+
|
60
|
+
print "Writing file... "
|
61
|
+
File.open("card_holder_#{Time.now.to_i}.scad", "w") do |file|
|
62
|
+
file.write(scad)
|
63
|
+
end
|
64
|
+
puts "DONE"
|
@@ -0,0 +1,95 @@
|
|
1
|
+
require "card_holder_generator/version"
|
2
|
+
|
3
|
+
class CardHolderGenerator
|
4
|
+
|
5
|
+
attr_accessor :settings
|
6
|
+
|
7
|
+
def initialize(settings = {})
|
8
|
+
self.settings = settings
|
9
|
+
end
|
10
|
+
|
11
|
+
def to_scad
|
12
|
+
<<-SCAD
|
13
|
+
#{comments}
|
14
|
+
|
15
|
+
#{header}
|
16
|
+
|
17
|
+
difference() {
|
18
|
+
#{main_cube}
|
19
|
+
#{main_hole}
|
20
|
+
#{gaps}
|
21
|
+
}
|
22
|
+
SCAD
|
23
|
+
end
|
24
|
+
|
25
|
+
private
|
26
|
+
|
27
|
+
%w(
|
28
|
+
external_walls_depth
|
29
|
+
floor_depth
|
30
|
+
top_margin
|
31
|
+
separators_width
|
32
|
+
separators_depth
|
33
|
+
cards_width
|
34
|
+
cards_height
|
35
|
+
gap_depths
|
36
|
+
).each do |setting_name|
|
37
|
+
define_method(setting_name) do
|
38
|
+
settings[setting_name]
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
def external_x
|
43
|
+
cards_height + external_walls_depth * 2
|
44
|
+
end
|
45
|
+
|
46
|
+
def external_y
|
47
|
+
gap_depths.inject(&:+) + (gap_depths.size + 1) * separators_depth
|
48
|
+
end
|
49
|
+
|
50
|
+
def external_z
|
51
|
+
cards_width + floor_depth + top_margin
|
52
|
+
end
|
53
|
+
|
54
|
+
def comments
|
55
|
+
<<-COMMENTS
|
56
|
+
// Source: https://github.com/carlosparamio/card_holder_generator
|
57
|
+
// Settings: #{settings.inspect}
|
58
|
+
COMMENTS
|
59
|
+
end
|
60
|
+
|
61
|
+
def header
|
62
|
+
<<-HEADER
|
63
|
+
module roundedcube(xdim, ydim, zdim, rdim) {
|
64
|
+
hull() {
|
65
|
+
translate([rdim, rdim, 0]) cylinder(h = zdim, r = rdim);
|
66
|
+
translate([xdim - rdim, rdim, 0]) cylinder(h = zdim, r = rdim);
|
67
|
+
translate([rdim, ydim - rdim, 0]) cylinder(h = zdim, r = rdim);
|
68
|
+
translate([xdim - rdim, ydim - rdim, 0]) cylinder(h = zdim, r = rdim);
|
69
|
+
}
|
70
|
+
}
|
71
|
+
HEADER
|
72
|
+
end
|
73
|
+
|
74
|
+
def main_cube
|
75
|
+
"cube([#{external_x}, #{external_y}, #{external_z}]);"
|
76
|
+
end
|
77
|
+
|
78
|
+
def main_hole
|
79
|
+
<<-MAINHOLE
|
80
|
+
translate([#{external_walls_depth + separators_width}, 0, #{floor_depth}]) mirror([0, 1, 0]) rotate([90, 0, 0]) roundedcube(#{cards_height - separators_width * 2}, #{external_z * 2}, #{external_y + 1}, 10);
|
81
|
+
MAINHOLE
|
82
|
+
end
|
83
|
+
|
84
|
+
def gaps
|
85
|
+
gaps = ""
|
86
|
+
gap_subtotal = 0
|
87
|
+
gap_depths.each_with_index do |gap_depth, index|
|
88
|
+
gaps += "translate([#{external_walls_depth}, #{separators_depth * (index + 1) + gap_subtotal}, #{floor_depth}]) cube([#{cards_height}, #{gap_depth}, #{external_z}]); "
|
89
|
+
gaps += "translate([#{external_walls_depth + separators_width}, #{separators_depth * (index + 1) + gap_subtotal}, 0]) cube([#{cards_height - separators_width * 2}, #{gap_depth}, #{external_z}]); "
|
90
|
+
gap_subtotal += gap_depth
|
91
|
+
end
|
92
|
+
gaps
|
93
|
+
end
|
94
|
+
|
95
|
+
end
|
metadata
ADDED
@@ -0,0 +1,103 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: card_holder_generator
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Carlos Paramio
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-03-12 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.16'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.16'
|
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: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
55
|
+
description: Script to generate OpenSCAD files that contains the design for custom
|
56
|
+
card holders.
|
57
|
+
email:
|
58
|
+
- hola@carlosparamio.com
|
59
|
+
executables:
|
60
|
+
- card_holder_generator
|
61
|
+
extensions: []
|
62
|
+
extra_rdoc_files: []
|
63
|
+
files:
|
64
|
+
- ".gitignore"
|
65
|
+
- ".rspec"
|
66
|
+
- ".ruby-version"
|
67
|
+
- ".travis.yml"
|
68
|
+
- CODE_OF_CONDUCT.md
|
69
|
+
- Gemfile
|
70
|
+
- Gemfile.lock
|
71
|
+
- README.md
|
72
|
+
- Rakefile
|
73
|
+
- bin/console
|
74
|
+
- bin/setup
|
75
|
+
- card_holder_generator.gemspec
|
76
|
+
- exe/card_holder_generator
|
77
|
+
- lib/card_holder_generator.rb
|
78
|
+
- lib/card_holder_generator/version.rb
|
79
|
+
homepage: https://github.com/carlosparamio/card_holder_generator
|
80
|
+
licenses: []
|
81
|
+
metadata: {}
|
82
|
+
post_install_message:
|
83
|
+
rdoc_options: []
|
84
|
+
require_paths:
|
85
|
+
- lib
|
86
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - ">="
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '0'
|
91
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - ">="
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '0'
|
96
|
+
requirements: []
|
97
|
+
rubyforge_project:
|
98
|
+
rubygems_version: 2.6.14
|
99
|
+
signing_key:
|
100
|
+
specification_version: 4
|
101
|
+
summary: Script to generate OpenSCAD files that contains the design for custom card
|
102
|
+
holders.
|
103
|
+
test_files: []
|