datoki 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +3 -0
- data/LICENSE +23 -0
- data/README.md +13 -0
- data/VERSION +1 -0
- data/datoki.gemspec +31 -0
- data/lib/datoki.rb +748 -0
- data/specs/datoki.rb +556 -0
- data/specs/lib/helpers.rb +25 -0
- metadata +137 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 3c7cf6158631c06cff0d2b021367095f5719d0e0
|
4
|
+
data.tar.gz: 7fe80b415d5d6e2ad255eade769cccd17a35425e
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: b66a2d6b2526db35de9eb130e1a880fc9903099d3c4ab39d5b96d8b140021f7eeae1fe1b5176f56f5a54ebd9350e747a7be8008ed561710b41beec612feb33ca
|
7
|
+
data.tar.gz: b5d1355790e87ff930f71e05435c10181ac4ab8d0e7c71452c36a1da10d6e6ef419c1c2c7cbdf205705c9a106f7a8bf347440dc7d519469d4b9d3e68aa8b3e0f
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
|
2
|
+
Copyright (c) 2014 da99
|
3
|
+
|
4
|
+
MIT License
|
5
|
+
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
7
|
+
a copy of this software and associated documentation files (the
|
8
|
+
"Software"), to deal in the Software without restriction, including
|
9
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
10
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
11
|
+
permit persons to whom the Software is furnished to do so, subject to
|
12
|
+
the following conditions:
|
13
|
+
|
14
|
+
The above copyright notice and this permission notice shall be
|
15
|
+
included in all copies or substantial portions of the Software.
|
16
|
+
|
17
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
18
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
19
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
20
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
21
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
22
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
23
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
1.0.1
|
data/datoki.gemspec
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = "datoki"
|
7
|
+
spec.version = `cat VERSION`
|
8
|
+
spec.authors = ["da99"]
|
9
|
+
spec.email = ["i-hate-spam-1234567@mailinator.com"]
|
10
|
+
spec.summary = %q{A gem to manage PGsql records.}
|
11
|
+
spec.description = %q{
|
12
|
+
My way of dealing with postgresql 9.3+ databases.
|
13
|
+
}
|
14
|
+
spec.homepage = "https://github.com/da99/datoki"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |file|
|
18
|
+
file.index('bin/') == 0 && file != "bin/#{File.basename Dir.pwd}"
|
19
|
+
}
|
20
|
+
spec.executables = []
|
21
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
22
|
+
spec.require_paths = ["lib"]
|
23
|
+
|
24
|
+
spec.add_development_dependency "pry" , "> 0.9"
|
25
|
+
spec.add_development_dependency "bundler" , "> 1.5"
|
26
|
+
spec.add_development_dependency "bacon" , "> 1.0"
|
27
|
+
spec.add_development_dependency "Bacon_Colored" , "> 0.1"
|
28
|
+
|
29
|
+
spec.add_runtime_dependency "sequel", '> 4.12'
|
30
|
+
spec.add_runtime_dependency "pg", '>= 0.17'
|
31
|
+
end
|