bindi 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile CHANGED
@@ -1,4 +1,4 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- # Specify your gem's dependencies in namaste.gemspec
3
+ # gem dependencies are in bindi.gemspec
4
4
  gemspec
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Bindi
2
2
 
3
- [Bindi](https://github.com/Havenwood/bindi) is a DSL for storing marshallable Ruby Objects in [Redis](http://redis.io/) using [Ohm](http://ohm.keyvalue.org/).
3
+ [Bindi](https://github.com/Havenwood/bindi) is a DSL for storing marshallable Ruby Objects in [Redis](http://redis.io/) using [Ohm](http://ohm.keyvalue.org/) (Object-hash mapping gem for Redis).
4
4
 
5
5
  ## Installation
6
6
 
@@ -1,5 +1,5 @@
1
1
  # -*- encoding: utf-8 -*-
2
- require File.expand_path('../lib/namaste/version', __FILE__)
2
+ require File.expand_path('../lib/bindi/version', __FILE__)
3
3
 
4
4
  Gem::Specification.new do |gem|
5
5
  gem.authors = ['Havenwood']
@@ -13,7 +13,7 @@ Gem::Specification.new do |gem|
13
13
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
14
14
  gem.name = 'bindi'
15
15
  gem.require_paths = ['lib']
16
- gem.version = Namaste::VERSION
16
+ gem.version = Bindi::VERSION
17
17
 
18
18
  gem.add_development_dependency 'ohm'
19
19
  gem.add_runtime_dependency 'ohm'
File without changes
@@ -0,0 +1,3 @@
1
+ module Bindi
2
+ VERSION = '0.0.2'
3
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bindi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -56,8 +56,8 @@ files:
56
56
  - README.md
57
57
  - Rakefile
58
58
  - bindi.gemspec
59
- - lib/namaste.rb
60
- - lib/namaste/version.rb
59
+ - lib/bindi.rb
60
+ - lib/bindi/version.rb
61
61
  homepage: https://github.com/Havenwood/bindi
62
62
  licenses: []
63
63
  post_install_message:
@@ -1,3 +0,0 @@
1
- module Namaste
2
- VERSION = "0.0.1"
3
- end