rinstall 0.1.0 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bf4b894f5ab48d9959c2fa8e80b51184a2e20652d70b7d59c77be85d0971846f
4
- data.tar.gz: 95b69cfd5c44f765354ccf6586cd714faffb2bbaedfac3cccc1f049de3d9eeb8
3
+ metadata.gz: 7cb3eee775432933b6ec69c822fd3fb3f3a1a218c22d4ac64d0bbd5ef98802e9
4
+ data.tar.gz: f13b0be09567b12feb73277cd020e9c0166eecff13a050067e52227000b59af9
5
5
  SHA512:
6
- metadata.gz: '04172865702d2aa9fe879fae4573acecb7ea0966965dd58422efa07158802c5e7a5f28ae5a1601beca126cdaf3deb3f53d70d1dd69c5080b3646c3bd1a0ac55d'
7
- data.tar.gz: c5f69248ee7c8654e3c4c8abe6b01c2ae34c67ccac9b1f7a5673790b95feef2e8bb29d3c39b88f1db69ecde8b5565c61570b118bf2e32b69f619c62b738f58d6
6
+ metadata.gz: 2967df45ef53b3a1fd8c8ef25acc97f7ef388e604807e3d280e4d89634483193b1d4bbcb5e043403ef3566841b65befbb760b5aa10606deef4e03d02591fa4ca
7
+ data.tar.gz: 1defcecace8f90fc8ead258b95ace56b61d83f2932b4c22e4a913822ebe21f492eed70831f3f4ead056a765bce4ef4338b1627237cd3c7b3489b79a19730c985
data/README.md ADDED
@@ -0,0 +1,23 @@
1
+ # Rinstall
2
+
3
+ TODO: Delete this and the text below, and describe your gem
4
+
5
+ NOTE: To experiment with code, run `bin/console` for an interactive prompt.
6
+
7
+ ## Installation
8
+
9
+ Install the gem and add to the application's Gemfile by executing:
10
+
11
+ $ bundle add rinstall
12
+
13
+ If bundler is not being used to manage dependencies, install the gem by executing:
14
+
15
+ $ gem install rinstall
16
+
17
+ ## Usage
18
+
19
+ TODO
20
+
21
+ ## Contributing
22
+
23
+ Bug reports and pull requests are welcome on GitHub at https://github.com/shuska/rinstall.
data/exe/rinstall ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require 'rinstall/cli'
3
+ Rinstall::CLI.start
@@ -0,0 +1,23 @@
1
+ require 'thor'
2
+
3
+ module Rinstall
4
+ module Cli
5
+ class Commands < Thor
6
+ include Thor::Actions
7
+
8
+ desc "bootstrap", "Install Bootstrap"
9
+ def bootstrap
10
+ puts "abcd"
11
+
12
+ create_file "config/initializers/initializer.rb", "# Add initialization content here"
13
+
14
+ # TODO
15
+ end
16
+
17
+ desc "foobar", "Install Foobar (test)"
18
+ def foobar
19
+ puts "Foobar"
20
+ end
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,9 @@
1
+ require 'thor'
2
+ require 'rinstall/cli/commands'
3
+
4
+ module Rinstall
5
+ class CLI < Thor
6
+ desc "install COMMANDS", "TODO"
7
+ subcommand "install", Rinstall::Cli::Commands
8
+ end
9
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Rinstall
4
- VERSION = "0.1.0"
4
+ VERSION = "0.2.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rinstall
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stefan Huska
@@ -9,17 +9,36 @@ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
11
  date: 2023-02-19 00:00:00.000000000 Z
12
- dependencies: []
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: thor
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
13
27
  description: Quickly install Bootstrap 5 (and more in the future) to your Rails app
14
28
  email:
15
29
  - stefan.huska@gmail.com
16
- executables: []
30
+ executables:
31
+ - rinstall
17
32
  extensions: []
18
33
  extra_rdoc_files: []
19
34
  files:
20
35
  - Gemfile
36
+ - README.md
21
37
  - Rakefile
38
+ - exe/rinstall
22
39
  - lib/rinstall.rb
40
+ - lib/rinstall/cli.rb
41
+ - lib/rinstall/cli/commands.rb
23
42
  - lib/rinstall/version.rb
24
43
  - sig/rinstall.rbs
25
44
  homepage: https://github.com/kelso/rinstall