buildless-app 0.0.1

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: ed7567d1939f828c3b011bbcc080d8df4f58a58f00295b2a61a8e756641ac43c
4
+ data.tar.gz: 6493c66df265e256b2de234c24493d284d1041b3b9138ed28a0abaeb4b605e20
5
+ SHA512:
6
+ metadata.gz: fc104fb77713679fef8bb2d0de8e23e641eaad41d8be996ec8f50ac5557fa5ac772d80e4d0082283b628dfa8e7f0a3fb081eefd0dd09982e33c757d456680ad8
7
+ data.tar.gz: 79bf6864adc583b2fc91c07826fc570c8cf4e0c48fc0c2e2a05d9f266cc576a1d7997cc31be47718d56809efc0b3b7f01d1d0798bec3a74a61fb96272a487086
data/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # Buildless
2
+
3
+ Bootstrap Ruby on Rails application faster. Skip the boring part of the development. Visit https://buildless.app and create your first automation.
4
+
5
+ ## 🚀 Installation
6
+
7
+ Install gem globally not per project:
8
+
9
+ ```shell
10
+ gem install buildless-app
11
+ ```
data/bin/buildless ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ command_line_arguments = ARGV.dup
5
+
6
+ puts "Hello, world! Args: #{command_line_arguments}"
@@ -0,0 +1,29 @@
1
+ # frozen_string_literal: true
2
+
3
+ lib = File.expand_path('lib', __dir__)
4
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
+ require 'buildless/version'
6
+
7
+ Gem::Specification.new do |spec|
8
+ spec.name = 'buildless-app'
9
+ spec.authors = ['Paweł Dąbrowski']
10
+ spec.email = ['contact@paweldabrowski.com']
11
+ spec.license = 'MIT'
12
+ spec.version = Buildless::VERSION.dup
13
+
14
+ spec.summary = 'Speed up Rails app bootstraping'
15
+ spec.description = spec.summary
16
+ spec.homepage = 'https://buildless.app'
17
+ spec.files = Dir['README.md', 'buildless-app.gemspec', 'bin/*', 'lib/**/*']
18
+ spec.bindir = 'bin'
19
+ spec.executables = ['buildless']
20
+ spec.require_paths = ['lib']
21
+
22
+ spec.metadata['allowed_push_host'] = 'https://rubygems.org'
23
+ spec.metadata['changelog_uri'] = 'https://github.com/pdabrowski6/buildless/blob/master/CHANGELOG.md'
24
+ spec.metadata['source_code_uri'] = 'https://github.com/pdabrowski6/buildless'
25
+ spec.metadata['bug_tracker_uri'] = 'https://github.com/pdabrowski6/buildless/issues'
26
+ spec.metadata['rubygems_mfa_required'] = 'true'
27
+
28
+ spec.required_ruby_version = '>= 3.2.2'
29
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Buildless
4
+ VERSION = '0.0.1'
5
+ end
data/lib/buildless.rb ADDED
File without changes
metadata ADDED
@@ -0,0 +1,54 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: buildless-app
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Paweł Dąbrowski
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2024-03-24 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Speed up Rails app bootstraping
14
+ email:
15
+ - contact@paweldabrowski.com
16
+ executables:
17
+ - buildless
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - README.md
22
+ - bin/buildless
23
+ - buildless-app.gemspec
24
+ - lib/buildless.rb
25
+ - lib/buildless/version.rb
26
+ homepage: https://buildless.app
27
+ licenses:
28
+ - MIT
29
+ metadata:
30
+ allowed_push_host: https://rubygems.org
31
+ changelog_uri: https://github.com/pdabrowski6/buildless/blob/master/CHANGELOG.md
32
+ source_code_uri: https://github.com/pdabrowski6/buildless
33
+ bug_tracker_uri: https://github.com/pdabrowski6/buildless/issues
34
+ rubygems_mfa_required: 'true'
35
+ post_install_message:
36
+ rdoc_options: []
37
+ require_paths:
38
+ - lib
39
+ required_ruby_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: 3.2.2
44
+ required_rubygems_version: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: '0'
49
+ requirements: []
50
+ rubygems_version: 3.4.10
51
+ signing_key:
52
+ specification_version: 4
53
+ summary: Speed up Rails app bootstraping
54
+ test_files: []