railsfast 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: d1c07b9cb67531e3f82645eb1acd237fbe5f76ce4496f143b63adc9a5fa24d94
4
+ data.tar.gz: 9b8b7b49ccdfbc5341646a0c5ebdd000722c3564cd5b54550b1a14b3f8245648
5
+ SHA512:
6
+ metadata.gz: dcf073b166bbbfd0b57060b0e3597382b494cd441817858294f76ee094b58c33afe3b679a7f80b5cde53d448bf38d67d6b42e1594e031353d7c5c755a890e869
7
+ data.tar.gz: 10aaeb7bd6848397eb26ac9f1f9fd683d27637eeec8b202b3bb940d2f524059bf72321dc78aca23c14e566c151f169ae9c05e91ceb4f7b090ceb321a88b05783
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2025-05-27
4
+
5
+ - Initial release
data/LICENSE.txt ADDED
@@ -0,0 +1 @@
1
+ Full commercial license - All rights reserved
data/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # Railsfast
2
+
3
+ A Rails app template built for AI and ready for vibe coding, so you can launch your startup over the weekend.
4
+
5
+ RailsFast is Rails template that allows you to ship a new base app from idea to production in just under 15 minutes. It has everything basic already working and looking nice out of the box, so you only have to code or vibe code your app on top of it. That’s: a live website ready to take payments, login users, send (beautiful) emails, upload images, sitemaps, SEO metadata, auto DB backups, background tasks with queues, block spam signups, block disposable emails...
data/Rakefile ADDED
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ task default: %i[]
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Railsfast
4
+ VERSION = "0.1.0"
5
+ end
data/lib/railsfast.rb ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "railsfast/version"
4
+
5
+ module Railsfast
6
+ class Error < StandardError; end
7
+ # Your code goes here...
8
+ end
data/sig/railsfast.rbs ADDED
@@ -0,0 +1,4 @@
1
+ module Railsfast
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,53 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: railsfast
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - rameerez
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 2025-05-26 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: A Rails app template built for AI and ready for vibe coding, so you can
13
+ launch your startup over the weekend [WIP - Under Construction]
14
+ email:
15
+ - rubygems@rameerez.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - CHANGELOG.md
21
+ - LICENSE.txt
22
+ - README.md
23
+ - Rakefile
24
+ - lib/railsfast.rb
25
+ - lib/railsfast/version.rb
26
+ - sig/railsfast.rbs
27
+ homepage: https://railsfast.com
28
+ licenses:
29
+ - MIT
30
+ metadata:
31
+ allowed_push_host: https://rubygems.org
32
+ homepage_uri: https://railsfast.com
33
+ source_code_uri: https://railsfast.com
34
+ changelog_uri: https://railsfast.com
35
+ rdoc_options: []
36
+ require_paths:
37
+ - lib
38
+ required_ruby_version: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: 3.1.0
43
+ required_rubygems_version: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ requirements: []
49
+ rubygems_version: 3.6.2
50
+ specification_version: 4
51
+ summary: A Rails app template built for AI and ready for vibe coding [WIP - Under
52
+ Construction]
53
+ test_files: []