excursion 0.0.13 → 0.0.15

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: 31ae3beacdf213dacf60c6fe3030b3e7a15edc8e
4
- data.tar.gz: 06beac4115e7521cc821013cbdb17b8e11f55ff3
3
+ metadata.gz: e59d9d16c549f96a4fff810e41959845dff9a47b
4
+ data.tar.gz: c50fcaa0fd1b057cfcb1e6f884f6193679d339c0
5
5
  SHA512:
6
- metadata.gz: 6b4f9dc9c685b6d9c0ebff8565a057342c7ba05c154ddd59567c5d584c6801fb297d297f151c7dc6064163c7e8bb0f183afe652008f26b6b3c6fcc8d073be384
7
- data.tar.gz: 025ef5e40dc828570a9b1094bdd1ceca843ebf879a5b10aeec3f61d9477ab70c1189ebb0ee7f6c3d376bf4d53b5ca6f1b1666891a96365df64e97e977bd467e1
6
+ metadata.gz: d07d1e5adf5ba64f666ef57d6f7086e8b3e30eaeba34146ea7100b0d7f3a5dfac4a40ac0af2e746dca765b7689077095f12ab4817fd8dd986cdbaefaae39f42b
7
+ data.tar.gz: cc178b8160347b1c653c170176e2df9e697f32317ea986432189b54821c68cf2f62ce399888dfe31591ade673d238d8318d9a916be32900e0e6575e37bccbab6
@@ -21,7 +21,7 @@ module Excursion
21
21
 
22
22
  def self.register_application(app=nil, opts={}, &block)
23
23
  raise ArgumentError, "app must be an instance of Rails::Application" unless app.is_a?(Rails::Application) || block_given?
24
- opts = {cache: true}.merge(opts)
24
+ opts = {store: true}.merge(opts)
25
25
 
26
26
  if app.is_a?(Rails::Application)
27
27
  name = app.class.name.underscore.split("/").first
@@ -40,7 +40,7 @@ module Excursion
40
40
  end
41
41
  end
42
42
 
43
- datastore.set(name, @@applications[name].to_cache) if opts[:cache]
43
+ datastore.set(name, @@applications[name].to_cache) if opts[:store]
44
44
  @@applications[name]
45
45
  end
46
46
 
@@ -1,3 +1,3 @@
1
1
  module Excursion
2
- VERSION = '0.0.13'
2
+ VERSION = '0.0.15'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: excursion
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.13
4
+ version: 0.0.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mark Rebec
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-09-27 00:00:00.000000000 Z
11
+ date: 2013-09-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails