wupee 1.1.3 → 1.1.4

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
  SHA1:
3
- metadata.gz: 8c07481061f3f4890be72ac608a141ac7743797a
4
- data.tar.gz: 14c4e41b8757e4012f053bfd305b7d7bfb1cd153
3
+ metadata.gz: e8360592f9d8ddfc32655c9b34b443d5f7e3970c
4
+ data.tar.gz: ee9a2595a9fd5b07a087be26dda6132ef42ffc35
5
5
  SHA512:
6
- metadata.gz: 3f79cc3bae923aa00b03efec9f9dd667786476a29b44096b0d809016e586bf603c7cb993a29f9bb36c1c09b7e04b58300a9a396e626c28481e7c9526f9f9acbe
7
- data.tar.gz: c5c1395e7d8297d8bae916e1701570d99fa9498d4958873658d03fc8ca976fc3a2f82d8d7f194ea21ef8b1732298b5fa9d89d88cfaa3028c2879567fe942e4c7
6
+ metadata.gz: 459137088deae5143986d42a6f2b204fa002d4097066b80032d3ff3b833ea6ab6a6a5701d659b52531e312b837fd14bb5c73ee850601cf00eaaf9cf0727db285
7
+ data.tar.gz: c9aabb35479bb228c7e4586ea8b08ff49c55b50ad769bdabc0996d8b9e6fb11e82798b74ab49bcc639aa66efc7229668d0902997cc57680e1f480fb569cedad5
@@ -0,0 +1,7 @@
1
+ Wupee::Engine.routes.draw do
2
+ namespace :api, defaults: { format: :json } do
3
+ resources :notifications, only: [:index, :show, :update] do
4
+ match :update_all, path: '/', via: [:put, :patch], on: :collection
5
+ end
6
+ end
7
+ end
@@ -1,3 +1,3 @@
1
1
  module Wupee
2
- VERSION = "1.1.3"
2
+ VERSION = "1.1.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wupee
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.3
4
+ version: 1.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peng DU
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-04-28 00:00:00.000000000 Z
12
+ date: 2016-04-29 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -102,6 +102,7 @@ files:
102
102
  - app/views/wupee/api/notifications/_notification.json.jbuilder
103
103
  - app/views/wupee/api/notifications/index.json.jbuilder
104
104
  - app/views/wupee/api/notifications/show.json.jbuilder
105
+ - config/routes.rb
105
106
  - db/migrate/20151029113100_create_wupee_notification_types.rb
106
107
  - db/migrate/20151029113101_create_wupee_notification_type_configurations.rb
107
108
  - db/migrate/20151029113107_create_wupee_notifications.rb