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 +4 -4
- data/README.md +23 -0
- data/exe/rinstall +3 -0
- data/lib/rinstall/cli/commands.rb +23 -0
- data/lib/rinstall/cli.rb +9 -0
- data/lib/rinstall/version.rb +1 -1
- metadata +22 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7cb3eee775432933b6ec69c822fd3fb3f3a1a218c22d4ac64d0bbd5ef98802e9
|
|
4
|
+
data.tar.gz: f13b0be09567b12feb73277cd020e9c0166eecff13a050067e52227000b59af9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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,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
|
data/lib/rinstall/cli.rb
ADDED
data/lib/rinstall/version.rb
CHANGED
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.
|
|
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
|