nada 0.0.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: a634a2c26adf707dbeacdbb6f0f308ee1f7be4ab
4
+ data.tar.gz: bb8da3d14d462a275739111668459e1330a2339a
5
+ SHA512:
6
+ metadata.gz: af33588b3172211f44160c47f1073d8add7c7270ee9c63889570a8ad656a1a09efc9152be90ffd4605b1da9c85c7626122517f01090c4299939a7358db2d5d1f
7
+ data.tar.gz: 7526158f22e37c0fd3ba7bec409822e3fa8f297ba5cc0882324a3fec2d334b4822060d656c99cf437064ef3aab88d3146a65e44200a2f9269f935eaf15ad48d3
@@ -0,0 +1,4 @@
1
+ pkg/*
2
+ *.pkg
3
+ .DS_Store
4
+ Gemfile.lock
@@ -0,0 +1,22 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.0.0
4
+ - 2.1.4
5
+ - 2.2.0
6
+ - 2.2.2
7
+ - jruby
8
+ - ruby-head
9
+ - jruby-head
10
+ - rbx-2
11
+
12
+ matrix:
13
+ fast_finish: true
14
+ allow_failures:
15
+ - rvm: ruby-head
16
+ - rvm: jruby-head
17
+
18
+ before_install:
19
+ # Only use 1 job until Travis fixes the rbx --jobs issue.
20
+ - if [ "$TRAVIS_RUBY_VERSION" == "rbx-2" ] ; then export BUNDLE_JOBS=1 ; else export BUNDLE_JOBS=4; fi
21
+
22
+ sudo: false
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'http://rubygems.org'
2
+
3
+ gemspec
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2015, emotive mediums limited.
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,21 @@
1
+ #### NoSQL abstraction layer for Ruby, with 'evented' I/O provided by [Celluloid](http://celluloid.io).
2
+ [![Gem Version](https://badge.fury.io/rb/nada.svg)](http://rubygems.org/gems/nada)
3
+ [![Build Status](https://secure.travis-ci.org/abstractive/nada.svg?branch=master)](http://travis-ci.org/abstractive/nada)
4
+ [![Code Climate](https://codeclimate.com/github/abstractive/nada.svg)](https://codeclimate.com/github/abstractive/nada)
5
+ [![Coverage Status](https://coveralls.io/repos/abstractive/nada/badge.svg?branch=master)](https://coveralls.io/r/abstractive/nada)
6
+
7
+ ## Initial support:
8
+
9
+ The following database platform drivers will be abstracted in the initial releases:
10
+
11
+ * [RethinkDB](https://github.com/rethinkdb/rethinkdb/tree/next/drivers/ruby)
12
+ * [MongoDB](https://github.com/mongodb/mongo-ruby-driver)
13
+
14
+ ## Contributing
15
+
16
+ * Fork this repository on GitHub.
17
+ * Make changes and send a pull request.
18
+
19
+ ## License
20
+
21
+ Distributed under the MIT License, by [emotive mediums limited](https://github.com/emotivemediums); produced by [Donovan Keme](https://github.com/digitalextremist) at [abstractive labs](https://github.com/abstractive). See [LICENSE.txt](https://github.com/abstractive/nada/blob/master/LICENSE.txt) for further details. Copyright 2015, **emotive mediums limited**.
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,7 @@
1
+ module Nada
2
+ require 'nada/version'
3
+ require 'nada/configuration'
4
+ module Driver
5
+ #de Only require the driver required by the Configuration.
6
+ end
7
+ end
@@ -0,0 +1,3 @@
1
+ module Nada::Configuration
2
+
3
+ end
@@ -0,0 +1,3 @@
1
+ module Nada::Driver::MongoDB
2
+
3
+ end
@@ -0,0 +1,3 @@
1
+ module Nada::Driver::RethinkDB
2
+
3
+ end
@@ -0,0 +1,3 @@
1
+ module Nada
2
+ VERSION = '0.0.0.0'
3
+ end
@@ -0,0 +1,26 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ require File.expand_path('../lib/nada/version', __FILE__)
4
+
5
+ Gem::Specification.new do |gem|
6
+ gem.name = "nada"
7
+ gem.version = Nada::VERSION
8
+ gem.platform = Gem::Platform::RUBY
9
+ gem.summary = "NoSQL abstraction layer for Ruby, with 'evented' I/O."
10
+ gem.description = "NoSQL abstraction layer for Ruby, with 'evented' I/O provided by Celluloid."
11
+ gem.licenses = ["MIT"]
12
+
13
+ gem.authors = ["Donovan Keme"]
14
+ gem.email = ["code@extremist.digital"]
15
+ gem.homepage = "https://github.com/abstractive/nada"
16
+
17
+ gem.required_ruby_version = ">= 1.9.2"
18
+ gem.required_rubygems_version = ">= 1.3.6"
19
+
20
+ gem.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|examples|spec|features)/}) }
21
+ gem.require_path = "lib"
22
+
23
+ gem.add_runtime_dependency "celluloid", ">= 0.17"
24
+ gem.add_runtime_dependency "celluloid-io", ">= 0.17"
25
+
26
+ end
metadata ADDED
@@ -0,0 +1,84 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: nada
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Donovan Keme
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-09-01 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - '>='
17
+ - !ruby/object:Gem::Version
18
+ version: '0.17'
19
+ name: celluloid
20
+ prerelease: false
21
+ type: :runtime
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '>='
25
+ - !ruby/object:Gem::Version
26
+ version: '0.17'
27
+ - !ruby/object:Gem::Dependency
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - '>='
31
+ - !ruby/object:Gem::Version
32
+ version: '0.17'
33
+ name: celluloid-io
34
+ prerelease: false
35
+ type: :runtime
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0.17'
41
+ description: NoSQL abstraction layer for Ruby, with 'evented' I/O provided by Celluloid.
42
+ email:
43
+ - code@extremist.digital
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - .gitignore
49
+ - .travis.yml
50
+ - Gemfile
51
+ - LICENSE.txt
52
+ - README.md
53
+ - Rakefile
54
+ - lib/nada.rb
55
+ - lib/nada/configuration.rb
56
+ - lib/nada/driver/mongodb.rb
57
+ - lib/nada/driver/rethinkdb.rb
58
+ - lib/nada/version.rb
59
+ - nada.gemspec
60
+ homepage: https://github.com/abstractive/nada
61
+ licenses:
62
+ - MIT
63
+ metadata: {}
64
+ post_install_message:
65
+ rdoc_options: []
66
+ require_paths:
67
+ - lib
68
+ required_ruby_version: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - '>='
71
+ - !ruby/object:Gem::Version
72
+ version: 1.9.2
73
+ required_rubygems_version: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - '>='
76
+ - !ruby/object:Gem::Version
77
+ version: 1.3.6
78
+ requirements: []
79
+ rubyforge_project:
80
+ rubygems_version: 2.4.8
81
+ signing_key:
82
+ specification_version: 4
83
+ summary: NoSQL abstraction layer for Ruby, with 'evented' I/O.
84
+ test_files: []