box_generator 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 0257cc7a41345ab5f7c1bcd4b1e72c8aa0480424
4
+ data.tar.gz: 0adbfefd0c2c1d19d7aae94aedb82900a4b671f5
5
+ SHA512:
6
+ metadata.gz: 87d10125b8e07f16771059f4d752488a46d103cd392e318be72d2f52856bb3a76407421f49fd41d024a51d0eb72178d57b01b397a07b8d42e2a87d499ca67800
7
+ data.tar.gz: b0caeea87750110ed396d0b1292f19b2dfd8c1472fd5d5664a56f83f1273234e7d2ef81af17acd88b8b650ac8ac2600170f5aa6bb52d86f6a4f6ebf37a2f5972
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.4.3
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.4.3
5
+ before_install: gem install bundler -v 1.16.1
@@ -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
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in box_generator.gemspec
6
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,35 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ box_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
+ box_generator!
30
+ bundler (~> 1.16)
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
+ # BoxGenerator
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/box_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 'box_generator'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install box_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/carlosparamio/box_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 BoxGenerator project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/box_generator/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "box_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,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,25 @@
1
+ lib = File.expand_path("../lib", __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require "box_generator/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "box_generator"
7
+ spec.version = BoxGenerator::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/box_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
data/exe/box_generator ADDED
@@ -0,0 +1,68 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "box_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 outside the box.", 3)
36
+ settings["internal_walls_depth"] = ask_value("Internal walls depth", "Depth of the floor.", 3)
37
+
38
+ settings["floor_depth"] = ask_value("Floor depth", "Depth of the walls at both sides (left and right) of the cards holder.", 3)
39
+ settings["top_margin"] = ask_value("Top margin", "Space on top of the cards up to reach the card holder top.", 3)
40
+
41
+ settings["compartiment_x"] = ask_value("Compartiment X", "Width of each compartiment.", 40)
42
+ settings["compartiment_z"] = ask_value("Compartiment Z", "Height of each compartiment.", 20)
43
+
44
+ settings["magnets_height"] = ask_value("Magnets height", "Height of each magner at corners (leave blank if you don't want magnets).", 0)
45
+ settings["magnets_diameter"] = ask_value("Magnets diameter", "Diameter of each magner at corners (leave blank if you don't want magnets).", 0)
46
+
47
+ settings["compartiments_y"] = []
48
+ compartiment_num = 1
49
+
50
+ loop do
51
+ compartiment_y = ask_value("Compartiment ##{compartiment_num} Y", "Depth of compartiment ##{compartiment_num} (leave empty to finish).")
52
+ break if compartiment_y == 0
53
+ settings["compartiments_y"] << compartiment_y
54
+ compartiment_num += 1
55
+ end
56
+
57
+ print_title "Final settings"
58
+ puts
59
+ puts settings.inspect
60
+ puts
61
+
62
+ scad = BoxGenerator.new(settings).to_scad
63
+
64
+ print "Writing file... "
65
+ File.open("box_#{Time.now.to_i}.scad", "w") do |file|
66
+ file.write(scad)
67
+ end
68
+ puts "DONE"
@@ -0,0 +1,3 @@
1
+ class BoxGenerator
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,100 @@
1
+ require "box_generator/version"
2
+
3
+ class BoxGenerator
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
+ #{compartiments}
20
+ #{magnets if magnets?}
21
+ }
22
+ SCAD
23
+ end
24
+
25
+ private
26
+
27
+ %w(
28
+ external_walls_depth
29
+ internal_walls_depth
30
+ floor_depth
31
+ top_margin
32
+ compartiment_x
33
+ compartiment_z
34
+ compartiments_y
35
+ magnets_height
36
+ magnets_diameter
37
+ ).each do |setting_name|
38
+ define_method(setting_name) do
39
+ settings[setting_name]
40
+ end
41
+ end
42
+
43
+ def external_x
44
+ compartiment_x + external_walls_depth * 2
45
+ end
46
+
47
+ def external_y
48
+ external_walls_depth * 2 + compartiments_y.inject(&:+) + (compartiments_y.size - 1) * internal_walls_depth
49
+ end
50
+
51
+ def external_z
52
+ compartiment_z + floor_depth + top_margin
53
+ end
54
+
55
+ def comments
56
+ <<-COMMENTS
57
+ // Source: https://github.com/carlosparamio/box_generator
58
+ // Settings: #{settings.inspect}
59
+ COMMENTS
60
+ end
61
+
62
+ def header
63
+ <<-HEADER
64
+ module roundedcube(xdim, ydim, zdim, rdim) {
65
+ hull() {
66
+ translate([rdim, rdim, 0]) cylinder(h = zdim, r = rdim);
67
+ translate([xdim - rdim, rdim, 0]) cylinder(h = zdim, r = rdim);
68
+ translate([rdim, ydim - rdim, 0]) cylinder(h = zdim, r = rdim);
69
+ translate([xdim - rdim, ydim - rdim, 0]) cylinder(h = zdim, r = rdim);
70
+ }
71
+ }
72
+ HEADER
73
+ end
74
+
75
+ def main_cube
76
+ "cube([#{external_x}, #{external_y}, #{external_z}]);"
77
+ end
78
+
79
+ def compartiments
80
+ compartiments = ""
81
+ compartiments_y_subtotal = 0
82
+ compartiments_y.each_with_index do |compartiment_y, index|
83
+ compartiments += "translate([#{external_walls_depth}, #{external_walls_depth + internal_walls_depth * index + compartiments_y_subtotal}, #{floor_depth}]) mirror([0, 1, 0]) rotate([90, 0, 0]) roundedcube(#{compartiment_x}, #{compartiment_z * 2}, #{compartiment_y}, #{compartiment_x / 5});"
84
+ compartiments_y_subtotal += compartiment_y
85
+ end
86
+ compartiments
87
+ end
88
+
89
+ def magnets
90
+ "translate([#{external_walls_depth / 2}, #{external_walls_depth / 2}, #{external_z - magnets_height + 1}]) cylinder(#{magnets_height}, d = #{magnets_diameter}, $fn = 100);" +
91
+ "translate([#{external_x - external_walls_depth / 2}, #{external_walls_depth / 2}, #{external_z - magnets_height + 1}]) cylinder(#{magnets_height}, d = #{magnets_diameter}, $fn = 100);" +
92
+ "translate([#{external_walls_depth / 2}, #{external_y - external_walls_depth / 2}, #{external_z - magnets_height + 1}]) cylinder(#{magnets_height}, d = #{magnets_diameter}, $fn = 100);" +
93
+ "translate([#{external_x - external_walls_depth / 2}, #{external_y - external_walls_depth / 2}, #{external_z - magnets_height + 1}]) cylinder(#{magnets_height}, d = #{magnets_diameter}, $fn = 100);"
94
+ end
95
+
96
+ def magnets?
97
+ magnets_height > 0 && magnets_diameter > 0
98
+ end
99
+
100
+ end
metadata ADDED
@@ -0,0 +1,103 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: box_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-29 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
+ - box_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
+ - box_generator.gemspec
76
+ - exe/box_generator
77
+ - lib/box_generator.rb
78
+ - lib/box_generator/version.rb
79
+ homepage: https://github.com/carlosparamio/box_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: []