pangea 0.0.1 → 0.0.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
  SHA256:
3
- metadata.gz: d27243b05fafc3960963923644f66aead12c570d7220b10ff11ed1e847b4f390
4
- data.tar.gz: b4e9e466b34efab6cf7efe1ce8f2b1bb26d660707eed62e7d345df4ac1d38d48
3
+ metadata.gz: 783a512111b288e0dde908a4577759e085a2e7fa3251a79363970d6e34795893
4
+ data.tar.gz: bcef5da4acd31d0c3bb20ebbd7a875d4dd7b784de87cac00f996a0d3923bc0cf
5
5
  SHA512:
6
- metadata.gz: e146bb51c4bb9b7f2ab6b2a64eefb7e60578882a7013ace95cd89c50aba567cf4ddc2c16a523866e4b073b79301bc18653ab827d55c84a0cec0247359721182c
7
- data.tar.gz: f16fb4b0affe5d354413834ca2ee9a67a14c4f8127d3f7b7e24e9804923944f8b9e515280f74a2c468c0dfcd6a6e5d82138da4167b276b589feba28e960e6b6c
6
+ metadata.gz: ccf6c51a0509592ebcf35dc4235da863e3077aa863b0fe71feeebe194989c9dfac2084d18db611b2efeeb82858316c9f8f5b5ce1e33930ff7b4eedd07c7d7b1a
7
+ data.tar.gz: ee15a2e61ebec35b90dc2c67e87b156e729a5fd801c925f4b547adbaba14eec5545bf31b01fffe88919bba32adf08f353a8d96d1973f81f60b604241ff9a615c
@@ -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,3 +1,3 @@
1
1
  module Pangea
2
- VERSION = %(0.0.1).freeze
2
+ VERSION = %(0.0.2).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.2
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