manifolds 0.0.1 → 0.0.2

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: 96d455b3f151ad4c4d430b3385934f850b9d64bf078d80c857359d07c347fa35
4
+ data.tar.gz: 6031e1d4faf245241df0557abc62ee7da5cdd256192e2bf38c8cdba4a564af33
5
5
  SHA512:
6
- metadata.gz: 0eb4eb3f35ebec97d3313dd1322321e8cb43cbb30f4980859728c2168392e222c78246a5ea2063d2c075e40f92b092b48a2d6f7cb222d1e222f8213b23ee8600
7
- data.tar.gz: b0f23d7b6ffa95005f76c932ab76fb537fe939f8a8b59f866053a77e3ddfd428556e6a05516b278b20f706f6c494c4e6344199792b35e30482958d8f69064a2f
6
+ metadata.gz: 9b17c4150ec90ced6a1aff5a1497fff94179fec38390bcf6d18a9e663556b5f2a3d67f4234d446de83059f9860419be245cdafeff49b8ba67181de6dc9165811
7
+ data.tar.gz: c4461186c87fec4257ae7eb11d2d54b4ca1bbd3530c9305dd256575d7de7c3ad79772c43f13a69f51f0480521072ad3c4f67ac013a39889a59a5dee63ed7632d
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
+ CLI.start(ARGV)
data/lib/manifolds/cli.rb CHANGED
@@ -19,5 +19,3 @@ class CLI < Thor
19
19
  puts "Generated Gemfile for the umbrella project."
20
20
  end
21
21
  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.2"
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.2
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