rinstall 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: bf4b894f5ab48d9959c2fa8e80b51184a2e20652d70b7d59c77be85d0971846f
4
+ data.tar.gz: 95b69cfd5c44f765354ccf6586cd714faffb2bbaedfac3cccc1f049de3d9eeb8
5
+ SHA512:
6
+ metadata.gz: '04172865702d2aa9fe879fae4573acecb7ea0966965dd58422efa07158802c5e7a5f28ae5a1601beca126cdaf3deb3f53d70d1dd69c5080b3646c3bd1a0ac55d'
7
+ data.tar.gz: c5f69248ee7c8654e3c4c8abe6b01c2ae34c67ccac9b1f7a5673790b95feef2e8bb29d3c39b88f1db69ecde8b5565c61570b118bf2e32b69f619c62b738f58d6
data/Gemfile ADDED
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in rinstall.gemspec
6
+ gemspec
7
+
8
+ gem "rake", "~> 13.0"
9
+
10
+ gem "minitest", "~> 5.0"
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rake/testtask"
5
+
6
+ Rake::TestTask.new(:test) do |t|
7
+ t.libs << "test"
8
+ t.libs << "lib"
9
+ t.test_files = FileList["test/**/test_*.rb"]
10
+ end
11
+
12
+ task default: :test
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Rinstall
4
+ VERSION = "0.1.0"
5
+ end
data/lib/rinstall.rb ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "rinstall/version"
4
+
5
+ module Rinstall
6
+ class Error < StandardError; end
7
+ # Your code goes here...
8
+ end
data/sig/rinstall.rbs ADDED
@@ -0,0 +1,4 @@
1
+ module Rinstall
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,51 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rinstall
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Stefan Huska
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2023-02-19 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Quickly install Bootstrap 5 (and more in the future) to your Rails app
14
+ email:
15
+ - stefan.huska@gmail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - Gemfile
21
+ - Rakefile
22
+ - lib/rinstall.rb
23
+ - lib/rinstall/version.rb
24
+ - sig/rinstall.rbs
25
+ homepage: https://github.com/kelso/rinstall
26
+ licenses: []
27
+ metadata:
28
+ allowed_push_host: https://rubygems.org
29
+ homepage_uri: https://github.com/kelso/rinstall
30
+ source_code_uri: https://github.com/kelso/rinstall
31
+ changelog_uri: https://github.com/kelso/rinstall/CHANGELOG.md
32
+ post_install_message:
33
+ rdoc_options: []
34
+ require_paths:
35
+ - lib
36
+ required_ruby_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 2.6.0
41
+ required_rubygems_version: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ requirements: []
47
+ rubygems_version: 3.4.7
48
+ signing_key:
49
+ specification_version: 4
50
+ summary: Install and integrate ruby gems to rails app fast
51
+ test_files: []