oxymoron 1.0.5 → 1.0.6

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
  SHA1:
3
- metadata.gz: b8c055cf8d6022a6ef95cde952de2edb6ecd48f4
4
- data.tar.gz: 7e247ce65c0af4727f02a9c6bab469dd50d5f6ca
3
+ metadata.gz: 15e5bb8616cbe619a7882f56676964ee6cbb8152
4
+ data.tar.gz: e397b26b8484342b3c12be317a3c0753d19a8a78
5
5
  SHA512:
6
- metadata.gz: fcb1a9f0bca79762282e9fbb0968283adf9a830d14d341195019645f2ac6be10a5776dbd996cec52e121d8a881631d535a0e3c4b8d2907ec9270dfe59a082e03
7
- data.tar.gz: f1264247051c55b07e171d7bdfded7faa600daebd34c26a959d40843f7509d2a52c6d543e99691b5e3666f7d1360665727ebbc251029d1d7bba488b53f741e80
6
+ metadata.gz: dae32170556468155fc670b6cef06b333c4bfe8e073381c81654825dfe7ffd0de160466ec5c2521462787697029728393a4cf66af0cc1bfcf3a2078a574b9696
7
+ data.tar.gz: c80cfa564daa7a0e3716ff231b3419b14bfec914d9ea5013352c95bd5c069e08d8b4f2a946477c22c655d22fb0946f2f0ba9b0067e8a0a1ac20ee04959bef6ac
@@ -0,0 +1,8 @@
1
+ angular.module("oxymoron.services.notice", [])
2
+ .service('Notice', ['ngNotify', function(ngNotify){
3
+ var Notice = this;
4
+
5
+ Notice.callback = function (type, res) {
6
+ ngNotify.set(res.data.msg || res.data.error, type);
7
+ }
8
+ }])
@@ -1,3 +1,3 @@
1
1
  module Oxymoron
2
- VERSION = "1.0.5"
2
+ VERSION = "1.0.6"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oxymoron
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.5
4
+ version: 1.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kononenko Paul
@@ -112,6 +112,7 @@ files:
112
112
  - app/assets/javascripts/oxymoron/routes.js.erb
113
113
  - app/assets/javascripts/oxymoron/services.js.erb
114
114
  - app/assets/javascripts/oxymoron/services/interceptor.js
115
+ - app/assets/javascripts/oxymoron/services/notice.js
115
116
  - app/assets/javascripts/oxymoron/services/resources.js.erb
116
117
  - app/assets/javascripts/oxymoron/services/sign.js
117
118
  - app/assets/javascripts/oxymoron/services/validate.js