traveladapter 0.0.1 → 0.0.2
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/.travis.yml +5 -0
- data/README.md +12 -2
- data/lib/traveladapter/version.rb +1 -1
- data/test/traveladapter_test.rb +0 -1
- metadata +2 -1
data/.travis.yml
ADDED
data/README.md
CHANGED
|
@@ -1,4 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
TravelAdapter [](http://travis-ci.org/marcinwyszynski/cabalist)
|
|
2
2
|
=============
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
TravelAdapter is a wrapper around some of the most popular key-value stores that can be used for caching. It provides a common interface for any string-string mapping objects. It does handles marshaling and unmarshaling of non-string values as well as key expiration. This is all transparent to the end user who only needs to mind the public API exposed by the gem.
|
|
5
|
+
|
|
6
|
+
Documentation
|
|
7
|
+
-------------
|
|
8
|
+
|
|
9
|
+
Please see [documentation](http://rubydoc.info/gems/traveladapter/0.0.2/frames) to see the library's public API. All public methods are also fully tested so you can see the unit test for usage guidelines.
|
|
10
|
+
|
|
11
|
+
Parting words
|
|
12
|
+
-------------
|
|
13
|
+
|
|
14
|
+
I created the gem (including documentation) just for my(future)self. If you want to contribute or need more hand-holding, please let me know.
|
data/test/traveladapter_test.rb
CHANGED
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: traveladapter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.0.
|
|
5
|
+
version: 0.0.2
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Marcin Wyszynski
|
|
@@ -45,6 +45,7 @@ extra_rdoc_files: []
|
|
|
45
45
|
|
|
46
46
|
files:
|
|
47
47
|
- .gitignore
|
|
48
|
+
- .travis.yml
|
|
48
49
|
- Gemfile
|
|
49
50
|
- README.md
|
|
50
51
|
- Rakefile
|