yaml_b_sides 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.travis.yml +5 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +41 -0
- data/Rakefile +10 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/yaml_b_sides/base.rb +39 -0
- data/lib/yaml_b_sides/instanceable.rb +24 -0
- data/lib/yaml_b_sides/propertiable.rb +27 -0
- data/lib/yaml_b_sides/queriable.rb +28 -0
- data/lib/yaml_b_sides/version.rb +3 -0
- data/lib/yaml_b_sides.rb +15 -0
- data/yaml_b_sides.gemspec +28 -0
- metadata +130 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 22e0005ea289885cd7f2f7a4ed355a257d027e0b
|
|
4
|
+
data.tar.gz: 8235ba4b11335051485824e75cf4d33fcf3daf3e
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: eaf6a11608185aaea2b2bc5717fd29794d3d29fffa22e7a9228b0d902ea06dc026b70553bab6dcd6a427335a2090bd5237b20adfc048a5b6474495d77a6f6de4
|
|
7
|
+
data.tar.gz: 3a845f5760d6c1aea2a1c2d7eca0b9c157b4a8da01553c5d52dbc888707009a0296d0596d6094a7b0894d8f38a212dd00968f13b78438dfa995635752d8e99f4
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2016 Greg Orlov
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# YamlBSides
|
|
2
|
+
|
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/yaml_b_sides`. To experiment with that code, run `bin/console` for an interactive prompt.
|
|
4
|
+
|
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
Add this line to your application's Gemfile:
|
|
10
|
+
|
|
11
|
+
```ruby
|
|
12
|
+
gem 'yaml_b_sides'
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
And then execute:
|
|
16
|
+
|
|
17
|
+
$ bundle
|
|
18
|
+
|
|
19
|
+
Or install it yourself as:
|
|
20
|
+
|
|
21
|
+
$ gem install yaml_b_sides
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
|
|
25
|
+
TODO: Write usage instructions here
|
|
26
|
+
|
|
27
|
+
## Development
|
|
28
|
+
|
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
30
|
+
|
|
31
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
32
|
+
|
|
33
|
+
## Contributing
|
|
34
|
+
|
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/yaml_b_sides.
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
## License
|
|
39
|
+
|
|
40
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
|
41
|
+
|
data/Rakefile
ADDED
data/bin/console
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
require "bundler/setup"
|
|
4
|
+
require "yaml_b_sides"
|
|
5
|
+
|
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
|
8
|
+
|
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
|
10
|
+
# require "pry"
|
|
11
|
+
# Pry.start
|
|
12
|
+
|
|
13
|
+
require "irb"
|
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
module YamlBSides
|
|
2
|
+
class Base
|
|
3
|
+
include ActiveModel::Model
|
|
4
|
+
include Propertiable
|
|
5
|
+
include Instanceable
|
|
6
|
+
include Queriable
|
|
7
|
+
|
|
8
|
+
class_attribute :logger
|
|
9
|
+
class_attribute :root_path
|
|
10
|
+
|
|
11
|
+
class << self
|
|
12
|
+
|
|
13
|
+
def load!
|
|
14
|
+
puts data_file
|
|
15
|
+
@data = YAML.load_file( data_file ).with_indifferent_access
|
|
16
|
+
idify_data!
|
|
17
|
+
puts "#{self} successfully loaded data"
|
|
18
|
+
rescue => e
|
|
19
|
+
logger.error "#{self} failed to load data: #{e}"
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
def inherited(subclass)
|
|
23
|
+
subclass.load!
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
protected
|
|
27
|
+
|
|
28
|
+
def data_file
|
|
29
|
+
[root_path, "#{self.name.pluralize.downcase}.yml"].compact.join("/")
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
def idify_data!
|
|
33
|
+
@data.each do |k, v|
|
|
34
|
+
v[:id] = k
|
|
35
|
+
end
|
|
36
|
+
end
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
end
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
module YamlBSides
|
|
2
|
+
module Instanceable
|
|
3
|
+
extend ActiveSupport::Concern
|
|
4
|
+
included do
|
|
5
|
+
include ActiveModel::Model
|
|
6
|
+
|
|
7
|
+
def initialize( attrs = {} )
|
|
8
|
+
@attributes = self.class.__properties.merge( attrs ).with_indifferent_access
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def method_missing( method, *args, &block )
|
|
12
|
+
if @attributes.has_key? method
|
|
13
|
+
method = @attributes[method]
|
|
14
|
+
else
|
|
15
|
+
super
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
def to_param
|
|
20
|
+
id
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
module YamlBSides
|
|
2
|
+
module Propertiable
|
|
3
|
+
extend ActiveSupport::Concern
|
|
4
|
+
|
|
5
|
+
included do
|
|
6
|
+
class_attribute :__properties
|
|
7
|
+
self.__properties = {}
|
|
8
|
+
|
|
9
|
+
class << self
|
|
10
|
+
def properties( props = {} )
|
|
11
|
+
self.__properties = __properties.dup
|
|
12
|
+
merge_properties props
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
def property( prop, default = nil )
|
|
16
|
+
merge_properties( { prop => default } )
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
protected
|
|
20
|
+
|
|
21
|
+
def merge_properties( additional_properties = {} )
|
|
22
|
+
self.__properties = __properties.merge( additional_properties )
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
end
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
module YamlBSides
|
|
2
|
+
module Queriable
|
|
3
|
+
extend ActiveSupport::Concern
|
|
4
|
+
|
|
5
|
+
included do
|
|
6
|
+
class << self
|
|
7
|
+
def find(id)
|
|
8
|
+
new @data[id]
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def find_by(params = {})
|
|
12
|
+
result = @data.values.find do |datum|
|
|
13
|
+
params.all? do |param, expcted_value|
|
|
14
|
+
datum[param] == expcted_value
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
result ? new(result) : nil
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
def all
|
|
21
|
+
@data.values.map do |obj|
|
|
22
|
+
new obj
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
end
|
data/lib/yaml_b_sides.rb
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
require "yaml_b_sides/version"
|
|
2
|
+
require 'active_model'
|
|
3
|
+
require 'active_model/model'
|
|
4
|
+
require 'active_support'
|
|
5
|
+
require 'active_support/concern'
|
|
6
|
+
require 'active_support/core_ext/class/attribute'
|
|
7
|
+
require 'active_support/core_ext/hash'
|
|
8
|
+
require 'yaml'
|
|
9
|
+
|
|
10
|
+
module YamlBSides
|
|
11
|
+
autoload :Base, 'yaml_b_sides/base'
|
|
12
|
+
autoload :Instanceable, 'yaml_b_sides/instanceable'
|
|
13
|
+
autoload :Propertiable, 'yaml_b_sides/propertiable'
|
|
14
|
+
autoload :Queriable, 'yaml_b_sides/queriable'
|
|
15
|
+
end
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
+
require 'yaml_b_sides/version'
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |spec|
|
|
7
|
+
spec.name = "yaml_b_sides"
|
|
8
|
+
spec.version = YamlBSides::VERSION
|
|
9
|
+
spec.authors = ["Greg Orlov"]
|
|
10
|
+
spec.email = ["gaorlov@gmail.com"]
|
|
11
|
+
|
|
12
|
+
spec.summary = "A light AcriveRecord like wrapper for flat YAML files"
|
|
13
|
+
spec.description = "An ActiveRecord-like interface for reading from & queryeing flat yaml files"
|
|
14
|
+
spec.homepage = "http://github.com/gaorlov/yaml_b_sides"
|
|
15
|
+
spec.license = "MIT"
|
|
16
|
+
|
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
18
|
+
spec.bindir = "exe"
|
|
19
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
20
|
+
spec.require_paths = ["lib"]
|
|
21
|
+
|
|
22
|
+
spec.add_dependency "activesupport"
|
|
23
|
+
spec.add_dependency "activemodel"
|
|
24
|
+
|
|
25
|
+
spec.add_development_dependency "bundler", "~> 1.12"
|
|
26
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
|
27
|
+
spec.add_development_dependency "minitest", "~> 5.0"
|
|
28
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: yaml_b_sides
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Greg Orlov
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2016-08-31 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: activesupport
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: activemodel
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0'
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ">="
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: bundler
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '1.12'
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '1.12'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: rake
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - "~>"
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '10.0'
|
|
62
|
+
type: :development
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - "~>"
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '10.0'
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: minitest
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - "~>"
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '5.0'
|
|
76
|
+
type: :development
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - "~>"
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: '5.0'
|
|
83
|
+
description: An ActiveRecord-like interface for reading from & queryeing flat yaml
|
|
84
|
+
files
|
|
85
|
+
email:
|
|
86
|
+
- gaorlov@gmail.com
|
|
87
|
+
executables: []
|
|
88
|
+
extensions: []
|
|
89
|
+
extra_rdoc_files: []
|
|
90
|
+
files:
|
|
91
|
+
- ".gitignore"
|
|
92
|
+
- ".travis.yml"
|
|
93
|
+
- Gemfile
|
|
94
|
+
- LICENSE.txt
|
|
95
|
+
- README.md
|
|
96
|
+
- Rakefile
|
|
97
|
+
- bin/console
|
|
98
|
+
- bin/setup
|
|
99
|
+
- lib/yaml_b_sides.rb
|
|
100
|
+
- lib/yaml_b_sides/base.rb
|
|
101
|
+
- lib/yaml_b_sides/instanceable.rb
|
|
102
|
+
- lib/yaml_b_sides/propertiable.rb
|
|
103
|
+
- lib/yaml_b_sides/queriable.rb
|
|
104
|
+
- lib/yaml_b_sides/version.rb
|
|
105
|
+
- yaml_b_sides.gemspec
|
|
106
|
+
homepage: http://github.com/gaorlov/yaml_b_sides
|
|
107
|
+
licenses:
|
|
108
|
+
- MIT
|
|
109
|
+
metadata: {}
|
|
110
|
+
post_install_message:
|
|
111
|
+
rdoc_options: []
|
|
112
|
+
require_paths:
|
|
113
|
+
- lib
|
|
114
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
115
|
+
requirements:
|
|
116
|
+
- - ">="
|
|
117
|
+
- !ruby/object:Gem::Version
|
|
118
|
+
version: '0'
|
|
119
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
120
|
+
requirements:
|
|
121
|
+
- - ">="
|
|
122
|
+
- !ruby/object:Gem::Version
|
|
123
|
+
version: '0'
|
|
124
|
+
requirements: []
|
|
125
|
+
rubyforge_project:
|
|
126
|
+
rubygems_version: 2.5.1
|
|
127
|
+
signing_key:
|
|
128
|
+
specification_version: 4
|
|
129
|
+
summary: A light AcriveRecord like wrapper for flat YAML files
|
|
130
|
+
test_files: []
|