manifolds 0.0.1 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ebadfc167043455aa450104c819e5d93e6343a603476eb00ae580ebc5be09bfe
4
- data.tar.gz: 7dbfd89a0654939dc3e41c4378d77ee07c07b734f9875d1355ec1f0f8d4a24ff
3
+ metadata.gz: 7d3debb4c2931f26431fbed6b07c172c01f0add99f62171af8feff42141c2ad4
4
+ data.tar.gz: 99990fc3b95e6bdd9b00c38d80a3994d5ba83fa44009a3577afe3d5449f0b98c
5
5
  SHA512:
6
- metadata.gz: 0eb4eb3f35ebec97d3313dd1322321e8cb43cbb30f4980859728c2168392e222c78246a5ea2063d2c075e40f92b092b48a2d6f7cb222d1e222f8213b23ee8600
7
- data.tar.gz: b0f23d7b6ffa95005f76c932ab76fb537fe939f8a8b59f866053a77e3ddfd428556e6a05516b278b20f706f6c494c4e6344199792b35e30482958d8f69064a2f
6
+ metadata.gz: ce3257743f9a7ace3f2c1c3e6aa3f8e83b8f2af83901d75fc2f6cebda59826d100926b056e1c32ba14dd6ccc39584e691fe6c85f2d8e7d185774d2765dd53d27
7
+ data.tar.gz: 6b9e507b4f5dcd1e40254453080999c7fae41b9f0adbfd69059f392db88b2c1dc679caf65b09020668e5935d108cdc6e50836c9acade82215f50bcb4cc710d7a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,5 @@
1
1
  ## [Unreleased]
2
2
 
3
- ## [0.1.0] - 2024-04-29
3
+ ## [0.0.1] - 2024-04-29
4
4
 
5
5
  - Initial release
data/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  # Manifolds
4
4
 
5
+ ![CI](https://github.com/bustle/manifolds/actions/workflows/ci.yml/badge.svg)
6
+
5
7
  Manifolds is a framework designed to streamline the process of generating and managing data infrastructures in Google BigQuery using Terraform. By leveraging Manifolds, teams can efficiently create complex views that join dimensional data with multiple metrics tables, enabling more dynamic data interactions and fewer sandcastles.
6
8
 
7
9
  ## Philosophy
data/bin/manifolds ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # frozen_string_literal: true
4
+
5
+ require "bundler/setup"
6
+ require "manifolds"
7
+
8
+ Manifolds::CLI.start(ARGV)
data/lib/manifolds/cli.rb CHANGED
@@ -3,21 +3,21 @@
3
3
  require "thor"
4
4
  require "fileutils"
5
5
 
6
- # CLI provides command line interface functionality
7
- # for creating and managing umbrella projects for data management.
8
- class CLI < Thor
9
- desc "new_umbrella NAME", "Generate a new umbrella project for data management"
10
- def new_umbrella(name)
11
- directory_path = "./#{name}/projects"
12
- FileUtils.mkdir_p(directory_path)
13
- puts "Created umbrella project '#{name}' with a projects directory."
14
- # Generate Gemfile inside the new umbrella project
15
- File.open("./#{name}/Gemfile", "w") do |file|
16
- file.puts "source 'https://rubygems.org'"
17
- file.puts "gem 'thor'"
6
+ module Manifolds
7
+ # CLI provides command line interface functionality
8
+ # for creating and managing umbrella projects for data management.
9
+ class CLI < Thor
10
+ desc "new_umbrella NAME", "Generate a new umbrella project for data management"
11
+ def new_umbrella(name)
12
+ directory_path = "./#{name}/projects"
13
+ FileUtils.mkdir_p(directory_path)
14
+ puts "Created umbrella project '#{name}' with a projects directory."
15
+ # Generate Gemfile inside the new umbrella project
16
+ File.open("./#{name}/Gemfile", "w") do |file|
17
+ file.puts "source 'https://rubygems.org'"
18
+ file.puts "gem 'thor'"
19
+ end
20
+ puts "Generated Gemfile for the umbrella project."
18
21
  end
19
- puts "Generated Gemfile for the umbrella project."
20
22
  end
21
23
  end
22
-
23
- CLI.start(ARGV) if __FILE__ == $PROGRAM_NAME
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Manifolds
4
- VERSION = "0.0.1"
4
+ VERSION = "0.0.3"
5
5
  end
data/lib/manifolds.rb CHANGED
@@ -4,5 +4,4 @@ require_relative "manifolds/version"
4
4
 
5
5
  module Manifolds
6
6
  class Error < StandardError; end
7
- # Your code goes here...
8
7
  end
metadata CHANGED
@@ -1,12 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: manifolds
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
  - claytongentry
8
8
  autorequire:
9
- bindir: exe
9
+ bindir: bin
10
10
  cert_chain: []
11
11
  date: 2024-04-29 00:00:00.000000000 Z
12
12
  dependencies:
@@ -27,7 +27,8 @@ dependencies:
27
27
  description:
28
28
  email:
29
29
  - clayton@bustle.com
30
- executables: []
30
+ executables:
31
+ - manifolds
31
32
  extensions: []
32
33
  extra_rdoc_files: []
33
34
  files:
@@ -37,6 +38,7 @@ files:
37
38
  - LICENSE.txt
38
39
  - README.md
39
40
  - Rakefile
41
+ - bin/manifolds
40
42
  - docs/CONTRIBUTING.md
41
43
  - lib/manifolds.rb
42
44
  - lib/manifolds/cli.rb