rails-compose 0.1.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 7727a250b314cf7d31da16121a1eeb81e19e3e09767837c7b4358c4111ddff3e
4
+ data.tar.gz: e5cd3e599b87feea908027d819aba58899d0655cf49bdc95a7944046bed73f19
5
+ SHA512:
6
+ metadata.gz: 701eaaf90b6054f20ce3cb11ea537511f2c29bd873a253f932f36358f5499672193cbab6fb61353c84da84762e41414d253cd58961bfcf5513b42f2b74b093bd
7
+ data.tar.gz: '09b93644702607cc45a2d1b3d2dbbb46335c651a6958d696a3588c819a0075f7907513908afb1937601104e2a3817737494a46454e0db80c7915e7e08c27c8d4'
data/bin/rails-compose ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'rails/compose'
4
+ puts Rails::Compose::VERSION
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Rails
4
+ module Compose
5
+ VERSION = "0.1.0"
6
+ end
7
+ end
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "compose/version"
4
+
5
+ module Rails
6
+ module Compose
7
+ class Error < StandardError; end
8
+
9
+
10
+ end
11
+ end
metadata ADDED
@@ -0,0 +1,51 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rails-compose
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Daniel Lutz
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-03-20 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Automatically setup Rails environments using Docker-Compose with Docker
14
+ or Podman
15
+ email: dlutz@glials.com
16
+ executables:
17
+ - rails-compose
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - bin/rails-compose
22
+ - lib/rails/compose.rb
23
+ - lib/rails/compose/version.rb
24
+ homepage: https://rubygems.org/gems/rails-compose
25
+ licenses:
26
+ - MIT
27
+ metadata:
28
+ homepage_uri: https://rubygems.org/gems/rails-compose
29
+ source_code_uri: https://github.com/glials/rails-compose
30
+ changelog_uri: https://github.com/glials/rails-compose/CHANGELOG.md
31
+ post_install_message:
32
+ rdoc_options: []
33
+ require_paths:
34
+ - lib
35
+ required_ruby_version: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: 2.6.0
40
+ required_rubygems_version: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: '0'
45
+ requirements: []
46
+ rubygems_version: 3.3.9
47
+ signing_key:
48
+ specification_version: 4
49
+ summary: Automatically setup Rails environments using Docker-Compose with Docker or
50
+ Podman
51
+ test_files: []