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: 89f51c6495e7df1d684d6b6274a16381f4e93d94b5dc8bddb5450bccb923f793
4
- data.tar.gz: 13e591e33c2d7f003a03ba9e7f1ceb9e28ed07ef6f766261c61a7a0f24a140f4
3
+ metadata.gz: 95ce8bc2e506452bf783333fe103efeaa84708137170be3645d04d4afb24418d
4
+ data.tar.gz: 5fbc84b2f6d84975cd13774ec3cf310b52964d9cfbc03342fa4484268a8bc813
5
5
  SHA512:
6
- metadata.gz: eadcfa689fb77e3c99173e02469ff4e44b104f3f705d2668333650f8fb0805ab1b7e9a9c52984a8eb7f0370e1bac3cc727980956bbd1d23d9ea818c2b9b026df
7
- data.tar.gz: f35dd3b95a438843bc176951810201c3a39881d31a75fedcb6a6fade0bbf64a794a98d639c2420fcb169442333ebdf15b8655891544440536346f8d4940df2d4
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.1.9'
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\}' at end of 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"
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
@@ -31,7 +31,7 @@ module Kablam
31
31
  end
32
32
  def setup_assets
33
33
  inject_into_file 'app/assets/javascripts/application.js', before: "//= require_tree ." do
34
- "//= require kablam/messaging"
34
+ "//= require kablam/messaging\n"
35
35
  end
36
36
  end
37
37
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kablam
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sergio Rivas