early_bird 0.1.1 → 0.1.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 11a2fe291571c28805e17591fb53da82eaa775691bc402299fd8ddac2a501863
4
- data.tar.gz: f57f2c41713fdf1ead723ed5a51953589040d482994bf080f921abd19b290133
3
+ metadata.gz: 78645b534dbdfcd84a8d4eabf71fee07851bf9c26e0f55beeb218a7e77109bcf
4
+ data.tar.gz: 44a128fa7e0ade6675a332f88699571d0185c3d15b611c955a3b03eed4c5b3d3
5
5
  SHA512:
6
- metadata.gz: 94f5c6384a03a83f1138b5f688cc36f0c986eb12ef4d72a6edb0b52aaa9ed8cf6211dc11ef4cd1855bc1199d50d87d5eb2f406e693ef25090310e6152d3607ea
7
- data.tar.gz: 33ea58143db1c5e695588cca8993d0b8d9760700f73c0e2fa68b0bc104bfea72efccf118c042b7f0e12397fbc118ed18f59c7491f2022d51b56eb1af8b5e45b1
6
+ metadata.gz: a1f9e76e64c5120d63c4038ac3d48d36b9e1a2099ae3629a520f654d3f03497ae4dd4ef78f82a6c3c162aac1129fc3c8936f651be8dbe9572408cf9f7fea3646
7
+ data.tar.gz: 2e757522c8d55652e890870f1d461242df6a0c874b5f17e920c65c165dfddb4d74b493dbc76d9272d94db5603bddd2f7fd7523a3de75cc093765f9e751f1b7ad
data/README.md CHANGED
@@ -2,6 +2,9 @@
2
2
 
3
3
  A very simple Gem to add waitlist functionality to a WIP Rails app.
4
4
 
5
+ ## Future Features
6
+ I plan to add automated invite codes in the near future
7
+
5
8
  ## Usage
6
9
  Follow the installation instructions and you're good to go!
7
10
 
@@ -32,7 +35,7 @@ And migrate the database:
32
35
  $ bin/rails db:migrate
33
36
  ```
34
37
 
35
- EarlyBird requires both new and show views:
38
+ EarlyBird requires new and show views to be implemented in your app:
36
39
  ```ruby
37
40
  # app/views/early_bird/submissions/new.html.erb
38
41
  <%= form_with(model: @submission) do |form| %>
@@ -1,4 +1,2 @@
1
- module EarlyBird
2
- class ApplicationController < ActionController::Base
3
- end
1
+ class EarlyBird::ApplicationController < ::ApplicationController
4
2
  end
@@ -1,3 +1,3 @@
1
1
  module EarlyBird
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: early_bird
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Carl Dawson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-28 00:00:00.000000000 Z
11
+ date: 2023-09-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails