pangea 0.0.1 → 0.0.3

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
  SHA256:
3
- metadata.gz: d27243b05fafc3960963923644f66aead12c570d7220b10ff11ed1e847b4f390
4
- data.tar.gz: b4e9e466b34efab6cf7efe1ce8f2b1bb26d660707eed62e7d345df4ac1d38d48
3
+ metadata.gz: 8e7135eba9f0a850ee0f43b64e3da28a9b3372df576fe2e83868595a32ff9b92
4
+ data.tar.gz: 4b4ecc3b10543b9a2c4786bfee39637ffccfab30d299726251e22c013be7138e
5
5
  SHA512:
6
- metadata.gz: e146bb51c4bb9b7f2ab6b2a64eefb7e60578882a7013ace95cd89c50aba567cf4ddc2c16a523866e4b073b79301bc18653ab827d55c84a0cec0247359721182c
7
- data.tar.gz: f16fb4b0affe5d354413834ca2ee9a67a14c4f8127d3f7b7e24e9804923944f8b9e515280f74a2c468c0dfcd6a6e5d82138da4167b276b589feba28e960e6b6c
6
+ metadata.gz: fdf62556669f9f0949daf466cd0abda53fc33c90a662190cf10dd26d21751afa8121cc413f12747f9c8ec90bae0323896a2f51c843c197a33ce6149dde54e57e
7
+ data.tar.gz: 271e52a166d8d5d35601ad4ec704816c59b1ab8c1163a13ecbfc7313f541dc7eeb00f88d2ded97b8a5ec23f1f6c0826eb183c3840c795e8a957aa04ca6303050
@@ -1,6 +1,6 @@
1
1
  require_relative %(./pangea)
2
2
 
3
- class ConfigCommand < StitchesCommand
3
+ class ConfigCommand < PangeaCommand
4
4
  usage do
5
5
  desc %(manage configuration)
6
6
  program %(pangea)
@@ -11,7 +11,7 @@ require_relative %(../../say/init)
11
11
  require %(pangea/synthesizer/terraform)
12
12
  require %(json)
13
13
 
14
- class InfraCommand < StitchesCommand
14
+ class InfraCommand < PangeaCommand
15
15
  include Constants
16
16
  NAME = :infra
17
17
 
@@ -1,7 +1,7 @@
1
1
  require %(tty-option)
2
2
 
3
- # shared command behavior for all commands in Stitches
4
- class StitchesCommand
3
+ # shared command behavior for all commands in Pangea
4
+ class PangeaCommand
5
5
  include TTY::Option
6
6
 
7
7
  flag :help do
@@ -1,2 +1,2 @@
1
- class AbstractStitchesStructure
1
+ class AbstractPangeaStructure
2
2
  end
@@ -1,4 +1,4 @@
1
1
  require_relative './abstract'
2
2
 
3
- class Namespace < AbstractStitchesStructure
3
+ class Namespace < AbstractPangeaStructure
4
4
  end
@@ -1,4 +1,4 @@
1
1
  require_relative './abstract'
2
2
 
3
- class Project < AbstractStitchesStructure
3
+ class Project < AbstractPangeaStructure
4
4
  end
@@ -1,4 +1,4 @@
1
1
  require_relative './abstract'
2
2
 
3
- class Site < AbstractStitchesStructure
3
+ class Site < AbstractPangeaStructure
4
4
  end
@@ -1,5 +1,5 @@
1
1
  require_relative %(../cli/constants)
2
- require %(pangea/synthesizer/abstract)
2
+ require %(abstract-synthesizer)
3
3
  require %(toml-rb)
4
4
  require %(json)
5
5
  require %(yaml)
@@ -1,3 +1,3 @@
1
1
  module Pangea
2
- VERSION = %(0.0.1).freeze
2
+ VERSION = %(0.0.3).freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pangea
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - drzthslnt@gmail.com
@@ -182,7 +182,7 @@ files:
182
182
  - lib/pangea/cli/subcommands/config.rb
183
183
  - lib/pangea/cli/subcommands/infra.rb
184
184
  - lib/pangea/cli/subcommands/main.rb
185
- - lib/pangea/cli/subcommands/stitches.rb
185
+ - lib/pangea/cli/subcommands/pangea.rb
186
186
  - lib/pangea/docker.rb
187
187
  - lib/pangea/errors/incorrect_subcommand_error.rb
188
188
  - lib/pangea/errors/namespace_not_found_error.rb