manifolds 0.0.2 → 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: 96d455b3f151ad4c4d430b3385934f850b9d64bf078d80c857359d07c347fa35
4
- data.tar.gz: 6031e1d4faf245241df0557abc62ee7da5cdd256192e2bf38c8cdba4a564af33
3
+ metadata.gz: 7d3debb4c2931f26431fbed6b07c172c01f0add99f62171af8feff42141c2ad4
4
+ data.tar.gz: 99990fc3b95e6bdd9b00c38d80a3994d5ba83fa44009a3577afe3d5449f0b98c
5
5
  SHA512:
6
- metadata.gz: 9b17c4150ec90ced6a1aff5a1497fff94179fec38390bcf6d18a9e663556b5f2a3d67f4234d446de83059f9860419be245cdafeff49b8ba67181de6dc9165811
7
- data.tar.gz: c4461186c87fec4257ae7eb11d2d54b4ca1bbd3530c9305dd256575d7de7c3ad79772c43f13a69f51f0480521072ad3c4f67ac013a39889a59a5dee63ed7632d
6
+ metadata.gz: ce3257743f9a7ace3f2c1c3e6aa3f8e83b8f2af83901d75fc2f6cebda59826d100926b056e1c32ba14dd6ccc39584e691fe6c85f2d8e7d185774d2765dd53d27
7
+ data.tar.gz: 6b9e507b4f5dcd1e40254453080999c7fae41b9f0adbfd69059f392db88b2c1dc679caf65b09020668e5935d108cdc6e50836c9acade82215f50bcb4cc710d7a
data/bin/manifolds CHANGED
@@ -5,4 +5,4 @@
5
5
  require "bundler/setup"
6
6
  require "manifolds"
7
7
 
8
- CLI.start(ARGV)
8
+ Manifolds::CLI.start(ARGV)
data/lib/manifolds/cli.rb CHANGED
@@ -3,19 +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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Manifolds
4
- VERSION = "0.0.2"
4
+ VERSION = "0.0.3"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: manifolds
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - claytongentry