yequel 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +6 -5
- data/lib/yequel/version.rb +1 -1
- data/yequel.gemspec +2 -2
- metadata +10 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: afaf945c3ff6d9f4bb71117ffb3957269215b726
|
4
|
+
data.tar.gz: 0b97c80aa98679931cb484d0a0dda719284790bb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8c3f96bfe14e76def55a45e5ef4ea48a0579d77d80cdf1c8defcfbd812f6325a74e26f37d812ad5e525b6457cf1bd83597d3d8c227641fa8f04c644e8a7114f5
|
7
|
+
data.tar.gz: 9d5d7c7d5c900e355e35e18d45b9b4642623c0c030df9edd26233a1626aded4c2fa98e3f2dd9a4a643e77ec295c4ad02b1ae0c6d25ecfeccc9205801048f0948
|
data/README.md
CHANGED
@@ -1,8 +1,9 @@
|
|
1
1
|
# Yequel
|
2
2
|
|
3
|
-
|
3
|
+
Provides a Sequel style ORM layer for YAML::Store.
|
4
|
+
Yequel supports the Sequel syntax with a subset of commands to access YAML::Store tables. Its target audience is application developers who require light weight alternative to SQL databases.
|
4
5
|
|
5
|
-
|
6
|
+
Yequel provides a small subset of Sequel commands with a goal of allowing for an exchange of the sqlite3 database with YAML::Store.
|
6
7
|
|
7
8
|
## Installation
|
8
9
|
|
@@ -22,7 +23,7 @@ Or install it yourself as:
|
|
22
23
|
|
23
24
|
## Usage
|
24
25
|
|
25
|
-
|
26
|
+
Yequel can be used as alternative for Sequel in Ruby frameworks like Sinatra. The Yequel was tested to replace a multi-table implementation that had been built with Sequel and the Sqlite database.
|
26
27
|
|
27
28
|
## Development / Testing
|
28
29
|
|
@@ -42,11 +43,11 @@ Artist.insert(:id=>3, :name=>"AS")
|
|
42
43
|
|
43
44
|
Artist[1]
|
44
45
|
```
|
45
|
-
|
46
|
+
The Yequel commands include a subset of the common commands that are used in an Sequel implementation.
|
46
47
|
|
47
48
|
## Contributing
|
48
49
|
|
49
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
50
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/al-kivi/yequel. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
50
51
|
|
51
52
|
|
52
53
|
## License
|
data/lib/yequel/version.rb
CHANGED
data/yequel.gemspec
CHANGED
@@ -29,7 +29,7 @@ Gem::Specification.new do |spec|
|
|
29
29
|
|
30
30
|
spec.add_development_dependency "bundler", "~> 1.11"
|
31
31
|
spec.add_development_dependency "rake", "~> 10.0"
|
32
|
-
spec.
|
33
|
-
spec.
|
32
|
+
spec.add_runtime_dependency "hash_dot", "~> 2.0"
|
33
|
+
spec.add_runtime_dependency "will_paginate", "~> 3.1"
|
34
34
|
|
35
35
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: yequel
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Al Kivi
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-08-
|
11
|
+
date: 2016-08-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -42,30 +42,30 @@ dependencies:
|
|
42
42
|
name: hash_dot
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- - "
|
45
|
+
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: '0'
|
47
|
+
version: '2.0'
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- - "
|
52
|
+
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: '0'
|
54
|
+
version: '2.0'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: will_paginate
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- - "
|
59
|
+
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: '
|
61
|
+
version: '3.1'
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- - "
|
66
|
+
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: '
|
68
|
+
version: '3.1'
|
69
69
|
description: Yequel provides a sequel style with basic features to access YAML::Store
|
70
70
|
tables. Its target audience is application developers who require light weight
|
71
71
|
alternative to SQL databases.
|