kablam 0.3.3 → 0.3.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/kablam/ajax.js +4 -0
- data/app/assets/javascripts/kablam/messaging.js.erb +0 -1
- data/kablam.gemspec +1 -1
- data/lib/kablam/engine.rb +6 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1b03799ec8c4c7ce89462adabe32cae88a678bfcb829e418b05f72fc0443ae94
|
4
|
+
data.tar.gz: 5073dabf1d96f5f72a92d9aad2c51d1749367bf663db2ae3259c80e1e22e3868
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c0bc5de2d920f1333bbb0ca0a7f89cb5eaeecba647c3f33a779d6351b0b5216a14e2b57be9282d25fcc4b6cfa349849d7162c4be22106947aa1abecacdb1c1ee
|
7
|
+
data.tar.gz: e2cf77fdfde55dbaeecc43a5ee2f5b7798fc2fd5e63a1066bccd706fd33973c138224bbedbff0ecd05afe6515006d8849af78e68138ccb242a3d690da3602459
|
@@ -262,6 +262,10 @@ AjaxRequest.post = function(args) {
|
|
262
262
|
AjaxRequest.doRequest("POST",args);
|
263
263
|
};
|
264
264
|
|
265
|
+
AjaxRequest.patch = function(args) {
|
266
|
+
AjaxRequest.doRequest("PATCH",args);
|
267
|
+
};
|
268
|
+
|
265
269
|
AjaxRequest.doRequest = function(method,args) {
|
266
270
|
if (typeof(args)!="undefined" && args!=null) {
|
267
271
|
var myRequest = new AjaxRequest();
|
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.
|
3
|
+
s.version = '0.3.4'
|
4
4
|
s.date = Time.now.strftime("%Y-%m-%d")
|
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.}"
|
data/lib/kablam/engine.rb
CHANGED