uss-enterprise 0.0.3.1 → 0.0.3.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b236feb864ab603761e8f1bdc7581404b9688fc5
4
- data.tar.gz: bd01c38ce05e31ab43ff305dfa9aeeabbac29468
3
+ metadata.gz: 96a61a0ce1b07c4592c6b39ab387d87b7797a38f
4
+ data.tar.gz: 258023f7791b65179543e90fddc834001b021af2
5
5
  SHA512:
6
- metadata.gz: 153ec37e66e02b449f7cb30c33904902980880d77983fc815569458056b501c4902687da9554ed57eca5a75d20f2a7cfff8a112c54f439e04a17e21f81b6f6de
7
- data.tar.gz: ecd5a2f979426d4b210862d9baf91f39182d1a7dc37295823164d06fe250708581632a9eb8a696d151d8f2703afb19610a0dbb0e34c45c4ece7871d9690da28b
6
+ metadata.gz: 752c57920f1e37584f4f891cadf8a49423d82c966d400cba56dab718a00be93f8d96658e5d6417a5e228c8569ca1eff28576f48828c804639699141a449187ff
7
+ data.tar.gz: 8f864b94bd406bf17ad80afb2116d4dc90a18beea28017abdbc05c64bc426aca0244df4b3a0980c8ca84ab0d09f0ff09f89841864a1488c03822ad94ab35c463
data/lib/test.rb CHANGED
@@ -1,26 +1,17 @@
1
- ship = <<~HEREDOC
2
- /\/\/\ / \
3
- | \ / | / \
4
- | \/ | / \
5
- | /\ |----------------------| /\ |
6
- | / \ | | / \ |
7
- |/ \| | / \ |
8
- |\ /| | | ( ) | |
9
- | \ / | | | ( ) | |
10
- | \/ | /\ | | | | /\
11
- | /\ | / \ | | | | / \
12
- | / \ | |----| | | | | |----|
13
- |/ \|---------------| | | /| . |\ | | |
14
- |\ /| | | / | . | \ | |
15
- | \ / | | / | . | \ |
16
- | \/ | | / | . | \ |
17
- | /\ |---------------|/ | . | \|
18
- | / \ | / NASA | . | NASA \
19
- |/ \| ( | | )
20
- |/\/\/\| | | |--| |--| | |
21
- ------------------------/ \-----/ \/ \-----/ \--------
22
- \\// \\//\\// \\//
23
- \/ \/ \/ \/
1
+ ship = <<HEREDOC
2
+ __
3
+ _.-~` `~-.
4
+ _.--~~~---,.__ _.,;; . -=(@'`\\
5
+ .-` ``~~~~--~~` ';;; ____)
6
+ _.' '. ';;;;; '`_.'
7
+ .-~;` `\\ ' ';;;;;__.~`
8
+ .' .' `'. | / /;''
9
+ \\/ .---'''``) /'-._____.--'\\ \\
10
+ _/| (` / /` `\\ \\__
11
+ ', `/- \\ \\ __/ (_ /-\\-\\-`
12
+ `;'-..___) | `/-\\-\\-`
13
+ `-. .'
14
+ `~~~~``
24
15
  HEREDOC
25
16
 
26
17
 
@@ -58,7 +58,8 @@ module Blueprints
58
58
  'Excelsior' => @schematics.ss_excelsior,
59
59
  'Ambassador' => @schematics.ss_ambassador,
60
60
  'Galaxy' => @schematics.ss_galaxy,
61
- 'Sovereign' => @schematics.ss_sovereign
61
+ 'Sovereign' => @schematics.ss_sovereign,
62
+ 'Intrepid' => @schematics.ss_intrepid
62
63
  }
63
64
  end
64
65
  end
@@ -21,6 +21,7 @@ module UserInput
21
21
 
22
22
  def define_class_to_group
23
23
  @class_to_group = {
24
+ 'intrepid' => 'StarShip',
24
25
  'sovereign' => 'StarShip',
25
26
  'galaxy' => 'StarShip',
26
27
  'ambassador' => 'StarShip',
@@ -67,7 +68,8 @@ module UserInput
67
68
  'b' => 'Excelsior',
68
69
  'c' => 'Ambassador',
69
70
  'd' => 'Galaxy',
70
- 'e' => 'Sovereign'
71
+ 'e' => 'Sovereign',
72
+ 'voy' => 'Intrepid'
71
73
  }
72
74
  @letter_to_class
73
75
  end
@@ -1,7 +1,7 @@
1
1
  module ShipSchematics
2
2
 
3
3
  class Schematics
4
- attr_reader :sloop, :carrier, :spaceshuttle, :ss_nx, :ss_constitution, :ss_const_refit, :ss_excelsior, :ss_ambassador, :ss_galaxy, :ss_sovereign
4
+ attr_reader :sloop, :carrier, :spaceshuttle, :ss_nx, :ss_constitution, :ss_const_refit, :ss_excelsior, :ss_ambassador, :ss_galaxy, :ss_sovereign, :ss_intrepid
5
5
 
6
6
  def initialize
7
7
  @sloop = """
@@ -139,6 +139,23 @@ HEREDOC
139
139
  `----.______,--'
140
140
 
141
141
  """
142
+ @ss_intrepid = <<HEREDOC
143
+ __
144
+ _.-~` `~-.
145
+ _.--~~~---,.__ _.,;; . -=(@'`\\
146
+ .-` ``~~~~--~~` ';;; ____)
147
+ _.' '. ';;;;; '`_.'
148
+ .-~;` `\\ ' ';;;;;__.~`
149
+ .' .' `'. | / /;''
150
+ \\/ .---'''``) /'-._____.--'\\ \\
151
+ _/| (` / /` `\\ \\__
152
+ ', `/- \\ \\ __/ (_ /-\\-\\-`
153
+ `;'-..___) | `/-\\-\\-`
154
+ `-. .'
155
+ `~~~~``
156
+
157
+ Never watch Threshold.
158
+ HEREDOC
142
159
  end
143
160
  end
144
161
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: uss-enterprise
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3.1
4
+ version: 0.0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sean DMR
@@ -20,12 +20,12 @@ extra_rdoc_files: []
20
20
  files:
21
21
  - bin/enterprise
22
22
  - lib/test.rb
23
- - lib/uss-enterprise.rb
24
23
  - lib/uss-enterprise/blueprint.rb
25
24
  - lib/uss-enterprise/interactions.rb
26
25
  - lib/uss-enterprise/schematics.rb
27
26
  - lib/uss-enterprise/ship_builders.rb
28
27
  - lib/uss-enterprise/ship_chooser.rb
28
+ - lib/uss-enterprise.rb
29
29
  - readme.md
30
30
  homepage: https://github.com/flyinggrizzly/uss-enterprise
31
31
  licenses:
@@ -37,17 +37,17 @@ require_paths:
37
37
  - lib
38
38
  required_ruby_version: !ruby/object:Gem::Requirement
39
39
  requirements:
40
- - - ">="
40
+ - - '>='
41
41
  - !ruby/object:Gem::Version
42
42
  version: '0'
43
43
  required_rubygems_version: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ">="
45
+ - - '>='
46
46
  - !ruby/object:Gem::Version
47
47
  version: '0'
48
48
  requirements: []
49
49
  rubyforge_project:
50
- rubygems_version: 2.6.8
50
+ rubygems_version: 2.0.14.1
51
51
  signing_key:
52
52
  specification_version: 4
53
53
  summary: Outputs ASCII art of different Enterprises