cookies_manager 0.1.3 → 0.1.4

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.
data/CHANGELOG.rdoc CHANGED
@@ -1,4 +1,4 @@
1
- 0.1.0 (Nov 07, 2011)
1
+ 0.1.x (Nov 07, 2011)
2
2
 
3
3
  * Initial release
4
4
 
data/README.rdoc CHANGED
@@ -11,6 +11,10 @@ In <b>Rails 2</b>, add this to your environment.rb file.
11
11
 
12
12
  config.gem "cookies_manager"
13
13
 
14
+ Alternatively, you can install it as a plugin:
15
+
16
+ script/plugin install git@github.com:RStrike/CookiesManager.git
17
+
14
18
  == Getting started
15
19
 
16
20
  === Basic usage
@@ -30,7 +34,7 @@ Next, you can refer the CookiesManager instance by calling the +cookies_manager+
30
34
 
31
35
  === Supported options
32
36
 
33
- All supported options are fully described along with some examples in the {file:../CookiesManager/Base.html CookiesManager::Base documentation}.
37
+ All supported options are fully described along with some examples in the {CookiesManager::Base documentation}[http://rubydoc.info/github/RStrike/CookiesManager/master/CookiesManager/Base].
34
38
 
35
39
  == When to use it?
36
40
 
@@ -55,12 +59,12 @@ than the session length, such as user display preferences.
55
59
 
56
60
  == Running the tests
57
61
 
58
- RSpec 2 is used for testing. To get the specs running, check {file:spec/README.rdoc spec/README}.
62
+ RSpec 2 is used for testing. To get the specs running, check {spec/README}[https://github.com/RStrike/CookiesManager/blob/master/spec/README.rdoc].
59
63
 
60
64
  == Coming up next
61
65
  - Adapt the gem to support Ruby 1.9.x and Rails 3.
62
66
 
63
67
  == Changes
64
68
 
65
- :include:CHANGELOG.rdoc
69
+ Check the {CHANGELOG}[https://github.com/RStrike/CookiesManager/blob/master/CHANGELOG.rdoc].
66
70
 
@@ -1,3 +1,3 @@
1
1
  module CookiesManager
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cookies_manager
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 19
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 3
10
- version: 0.1.3
9
+ - 4
10
+ version: 0.1.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Christophe Levand