traveladapter 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.8.7
4
+ - 1.9.2
5
+ - 1.9.3
data/README.md CHANGED
@@ -1,4 +1,14 @@
1
- traveladapter
1
+ TravelAdapter [![Build Status](https://secure.travis-ci.org/marcinwyszynski/cabalist.png?branch=master)](http://travis-ci.org/marcinwyszynski/cabalist)
2
2
  =============
3
3
 
4
- Wrapper around key-value stores used for caching.
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.
@@ -1,3 +1,3 @@
1
1
  module TravelAdapter
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -1,6 +1,5 @@
1
1
  require "test/unit"
2
2
  require "mocha"
3
- require "pry"
4
3
 
5
4
  require "traveladapter"
6
5
 
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: traveladapter
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.1
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