kablam 0.1.9 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 95ce8bc2e506452bf783333fe103efeaa84708137170be3645d04d4afb24418d
|
4
|
+
data.tar.gz: 5fbc84b2f6d84975cd13774ec3cf310b52964d9cfbc03342fa4484268a8bc813
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0297912de86566d0ad58315e58bbef397d7fed36f438ced1788e43f690dde07fc6b5fa410b6eb84d326dbb6f5e333c38634d38133a3214934af6a71a11a032e3'
|
7
|
+
data.tar.gz: d1282446fcd4d30dfb8bf4b3543871f33fb2253ac2e30e60c5676ccc3869378eda409979a8ca44b9e4c70c98347e9b53a48090a13aa04fd3310c6bcbe73078a9
|
data/kablam.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'kablam'
|
3
|
-
s.version = '0.
|
3
|
+
s.version = '0.2.0'
|
4
4
|
s.date = '2018-09-14'
|
5
5
|
s.summary = "Kablam! All the things you hate. But Faster."
|
6
6
|
s.description = "Gem to make development of everything in rails faster. Form creation & styling, all the resource routes, even actioncable messaging!\n {NOTE: In Development. NOT READY FOR TESTING.}"
|
@@ -16,7 +16,7 @@ module Kablam
|
|
16
16
|
end
|
17
17
|
def setup_routes
|
18
18
|
inject_into_file 'config/routes.rb', before: "end" do
|
19
|
-
" # KABLAM! form/create/update/destroy/undo for all models\n # Note: Make sure Kablam engine is at the BOTTOM of routes\n # helpers to use KABLAM! [examples w/ 'posts' model)\n # ---> kablam.form_path('posts')\n # (if edit form, must add '?id=\#\{@post.id\}'
|
19
|
+
" # KABLAM! form/create/update/destroy/undo for all models\n # Note: Make sure Kablam engine is at the BOTTOM of routes\n # helpers to use KABLAM! [examples w/ 'posts' model)\n # ---> kablam.form_path('posts')\n # (if edit form, must add '?id=\#\{@post.id\}' to path)\n # ---> kablam.create_path('posts')\n # ---> kablam.delete_path('posts', @post)\n # ---> kablam.update_path('posts', @post)\n # ---> kablam.undo_path('posts', @post)\n mount Kablam::Engine => '/kablam', as: 'kablam'\n"
|
20
20
|
end
|
21
21
|
|
22
22
|
end
|