notifications 0.0.5 → 0.1.0

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: 894e9ea7d921d8e0831b8ed311857d51ee43d3e1
4
- data.tar.gz: fa5aa3d3e9d64dce5c4e885c9fe342e186f77c5f
3
+ metadata.gz: 1f3c5ecc3a58f354cdc58b715503f4584906f380
4
+ data.tar.gz: 9655dcd0146b82449f1f5b6c5c80f8219d74af09
5
5
  SHA512:
6
- metadata.gz: 8e2b603574fe0510b6d872c4ef154810a331f770e4de63a5048db465a8f4ed4f1b691c3e9133999ef6a53c91ee3223bd5e78e9e08277d0078d009ad9b6f35faf
7
- data.tar.gz: 0e969341405665eca9919edb054a0fe195a178cf8da28d8a01d9dd6973940ce0a6ee7d35fb0e7b7203f1fc671c8192dd23b8e96aac34672a6cd2d17b9d64a2d2
6
+ metadata.gz: 9dc6d63668741397b9b9c0c3444896e4c052f907854dc1a8bfe15090015c1c93a19cb114f1838136adab7530ffe20c2a23e1d5ac8ee5efaec337b37f8b35e33e
7
+ data.tar.gz: 677bce37a175c88e48dea6f58c02e2feb2c3db036113780a4365ccbae5310540a269a807e43016f5faf4048df76bea7ffa07897671dca39dfd54bb52b809250d
@@ -25,8 +25,12 @@ module Notifications
25
25
  end
26
26
  end
27
27
 
28
+ def add_routes
29
+ route 'mount Notifications::Engine => "/notifications"'
30
+ end
31
+
28
32
  def add_migrations
29
- exec("rails notifications:install:migrations")
33
+ `rake notifications:install:migrations`
30
34
  end
31
35
  end
32
36
  end
@@ -1,3 +1,3 @@
1
1
  module Notifications
2
- VERSION = '0.0.5'
2
+ VERSION = '0.1.0'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: notifications
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Lee
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-29 00:00:00.000000000 Z
11
+ date: 2016-05-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -95,7 +95,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
95
95
  version: '0'
96
96
  requirements: []
97
97
  rubyforge_project:
98
- rubygems_version: 2.6.2
98
+ rubygems_version: 2.5.1
99
99
  signing_key:
100
100
  specification_version: 4
101
101
  summary: Rails mountable Notification for any applications.