create-rails-app 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: 2d2ba9381d1ff998b8886b1f2d0856bb3371601a5e83dbe09abf27800f4e2907
4
+ data.tar.gz: f66f6294eb5dfb09a193b3cc74dde66e4a7625ceb782d216ca15ac391514c30e
5
+ SHA512:
6
+ metadata.gz: c9b416a4d56066fe42e77de5eb3787ade822964aee178522f11c6c45cb4ca67b46f08dd44ec9719f25f6370158c94b478bed2cec5c9673850a62ca2afb6b667a
7
+ data.tar.gz: 5f372ec41c41d6a06f73432e3e6ea3929888a7f1d8f07b9ab942659a6f783fcb8199cf4c588120e998653a055a51e5c801c20607b2c58541d34b8eb6513a352e
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2026-02-11
4
+
5
+ - Initial release
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2026 Leonid Svyatov
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,21 @@
1
+ # create-rails-app
2
+
3
+ Interactive CLI wizard for `rails new` — work in progress.
4
+
5
+ Will walk you through every option, save presets, and remember your choices. No more `rails new` flags look-ups!
6
+
7
+ Sibling project: [create-ruby-gem](https://github.com/svyatov/create-ruby-gem) — the same idea for `bundle gem`.
8
+
9
+ ## Installation
10
+
11
+ ```bash
12
+ gem install create-rails-app
13
+ ```
14
+
15
+ ## Contributing
16
+
17
+ Bug reports and pull requests are welcome on GitHub at https://github.com/svyatov/create-rails-app.
18
+
19
+ ## License
20
+
21
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -0,0 +1,9 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require 'create_rails_app'
5
+
6
+ puts "create-rails-app v#{CreateRailsApp::VERSION}"
7
+ puts
8
+ puts 'Interactive CLI wizard for `rails new` — coming soon!'
9
+ puts 'https://github.com/svyatov/create-rails-app'
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module CreateRailsApp
4
+ VERSION = '0.1.0'
5
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'create_rails_app/version'
4
+
5
+ module CreateRailsApp
6
+ class Error < StandardError; end
7
+ end
metadata ADDED
@@ -0,0 +1,55 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: create-rails-app
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Leonid Svyatov
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: Interactive CLI wizard for rails new. Walks you through every option,
13
+ saves presets, and remembers your choices. Work in progress!
14
+ email:
15
+ - leonid@svyatov.com
16
+ executables:
17
+ - create-rails-app
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - CHANGELOG.md
22
+ - LICENSE.txt
23
+ - README.md
24
+ - exe/create-rails-app
25
+ - lib/create_rails_app.rb
26
+ - lib/create_rails_app/version.rb
27
+ homepage: https://github.com/svyatov/create-rails-app
28
+ licenses:
29
+ - MIT
30
+ metadata:
31
+ allowed_push_host: https://rubygems.org
32
+ homepage_uri: https://github.com/svyatov/create-rails-app
33
+ source_code_uri: https://github.com/svyatov/create-rails-app
34
+ changelog_uri: https://github.com/svyatov/create-rails-app/blob/main/CHANGELOG.md
35
+ documentation_uri: https://rubydoc.info/gems/create-rails-app
36
+ bug_tracker_uri: https://github.com/svyatov/create-rails-app/issues
37
+ rubygems_mfa_required: 'true'
38
+ rdoc_options: []
39
+ require_paths:
40
+ - lib
41
+ required_ruby_version: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: '3.2'
46
+ required_rubygems_version: !ruby/object:Gem::Requirement
47
+ requirements:
48
+ - - ">="
49
+ - !ruby/object:Gem::Version
50
+ version: '0'
51
+ requirements: []
52
+ rubygems_version: 4.0.6
53
+ specification_version: 4
54
+ summary: Interactive CLI wizard for rails new (coming soon)
55
+ test_files: []