project_store 0.1.1
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 +10 -0
- data/.rspec +2 -0
- data/.travis.yml +4 -0
- data/CODE_OF_CONDUCT.md +49 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +41 -0
- data/Rakefile +2 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/project_store.rb +22 -0
- data/lib/project_store/base.rb +77 -0
- data/lib/project_store/editing.rb +60 -0
- data/lib/project_store/entity/base.rb +36 -0
- data/lib/project_store/entity/common_properties.rb +25 -0
- data/lib/project_store/entity/mandatory_properties.rb +19 -0
- data/lib/project_store/error.rb +7 -0
- data/lib/project_store/initializer.rb +41 -0
- data/lib/project_store/version.rb +3 -0
- data/project_store.gemspec +29 -0
- metadata +120 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 3dfd310652c0a6cf26173513e71f591b4d17c72a
|
4
|
+
data.tar.gz: 39bf1b9f0454bbc8d536099d808707b2f2b5a5f7
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: e18b2cabcdf75f5039b9491f9567a2c9a5077fc7c7e74d5bae0a0f0573c8577d944ef872961e01caf9febfeaf3d16ada6dd96cef8f70dd18f662097c0bb55468
|
7
|
+
data.tar.gz: 41a370e11d9defce55628f2cf8b32ab0700199dc9c75fe985d1d0e16b2dec81519c1530e3d74492388efe324fe03ed3f03ca7bf6f5ba36a6fa5bf3b32e5faf5e
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
# Contributor Code of Conduct
|
2
|
+
|
3
|
+
As contributors and maintainers of this project, and in the interest of
|
4
|
+
fostering an open and welcoming community, we pledge to respect all people who
|
5
|
+
contribute through reporting issues, posting feature requests, updating
|
6
|
+
documentation, submitting pull requests or patches, and other activities.
|
7
|
+
|
8
|
+
We are committed to making participation in this project a harassment-free
|
9
|
+
experience for everyone, regardless of level of experience, gender, gender
|
10
|
+
identity and expression, sexual orientation, disability, personal appearance,
|
11
|
+
body size, race, ethnicity, age, religion, or nationality.
|
12
|
+
|
13
|
+
Examples of unacceptable behavior by participants include:
|
14
|
+
|
15
|
+
* The use of sexualized language or imagery
|
16
|
+
* Personal attacks
|
17
|
+
* Trolling or insulting/derogatory comments
|
18
|
+
* Public or private harassment
|
19
|
+
* Publishing other's private information, such as physical or electronic
|
20
|
+
addresses, without explicit permission
|
21
|
+
* Other unethical or unprofessional conduct
|
22
|
+
|
23
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
24
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
25
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
26
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
27
|
+
threatening, offensive, or harmful.
|
28
|
+
|
29
|
+
By adopting this Code of Conduct, project maintainers commit themselves to
|
30
|
+
fairly and consistently applying these principles to every aspect of managing
|
31
|
+
this project. Project maintainers who do not follow or enforce the Code of
|
32
|
+
Conduct may be permanently removed from the project team.
|
33
|
+
|
34
|
+
This code of conduct applies both within project spaces and in public spaces
|
35
|
+
when an individual is representing the project or its community.
|
36
|
+
|
37
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
38
|
+
reported by contacting a project maintainer at lbnetid+gh@gmail.com. All
|
39
|
+
complaints will be reviewed and investigated and will result in a response that
|
40
|
+
is deemed necessary and appropriate to the circumstances. Maintainers are
|
41
|
+
obligated to maintain confidentiality with regard to the reporter of an
|
42
|
+
incident.
|
43
|
+
|
44
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
45
|
+
version 1.3.0, available at
|
46
|
+
[http://contributor-covenant.org/version/1/3/0/][version]
|
47
|
+
|
48
|
+
[homepage]: http://contributor-covenant.org
|
49
|
+
[version]: http://contributor-covenant.org/version/1/3/0/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 Laurent B.
|
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
|
+
# ProjectStore
|
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/project_store`. 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 'project_store'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install project_store
|
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 spec #BUNDLE_SSL_CA_CERT: '/etc/ssl/certs/NanonetRootCA.pem'` 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]/project_store. 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.
|
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 'project_store'
|
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 'pry'
|
14
|
+
Pry.start
|
data/bin/setup
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
require 'yaml/store'
|
2
|
+
require 'logger'
|
3
|
+
|
4
|
+
require 'project_store/version'
|
5
|
+
require 'project_store/error'
|
6
|
+
|
7
|
+
module ProjectStore
|
8
|
+
def self.logger
|
9
|
+
@logger ||= Logger.new STDOUT
|
10
|
+
end
|
11
|
+
|
12
|
+
def self.logger=(logger)
|
13
|
+
@logger = logger
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
|
18
|
+
require 'project_store/entity/mandatory_properties'
|
19
|
+
require 'project_store/entity/common_properties'
|
20
|
+
require 'project_store/entity/base'
|
21
|
+
require 'project_store/editing'
|
22
|
+
require 'project_store/base'
|
@@ -0,0 +1,77 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
module ProjectStore
|
4
|
+
|
5
|
+
class Base
|
6
|
+
|
7
|
+
include ProjectStore::Editing
|
8
|
+
|
9
|
+
attr_accessor :continue_on_error
|
10
|
+
attr_reader :path, :project_entities, :entity_types, :stores, :logger
|
11
|
+
|
12
|
+
def initialize(path)
|
13
|
+
raise PSE, "Invalid store path '#{path}'!" unless valid_path? path
|
14
|
+
@logger = ProjectStore.logger
|
15
|
+
@path = File.expand_path path
|
16
|
+
@continue_on_error = false
|
17
|
+
@project_entities = {}
|
18
|
+
@stores = {}
|
19
|
+
@entity_types = {}
|
20
|
+
end
|
21
|
+
|
22
|
+
def load_entities
|
23
|
+
Dir.glob(File.join(path, '*.yaml')).each do |file|
|
24
|
+
logger.debug "Found store file '#{file}'"
|
25
|
+
begin
|
26
|
+
store = YAML::Store.new(file)
|
27
|
+
stores[store] ||= []
|
28
|
+
store.transaction(true) do
|
29
|
+
store.roots.each do |entity_name|
|
30
|
+
begin
|
31
|
+
logger.debug "Loading '#{entity_name}' entity."
|
32
|
+
entity = store[entity_name]
|
33
|
+
add_and_index_entity entity, store, entity_name
|
34
|
+
rescue => e
|
35
|
+
if continue_on_error
|
36
|
+
logger.error "Invalid entity of type '#{entity_name}' in file '#{file}'"
|
37
|
+
logger.debug "#{e.message}\nBacktrace:\n#{e.backtrace.join("\n\t")}"
|
38
|
+
else
|
39
|
+
logger.debug "#{e.message}\nBacktrace:\n#{e.backtrace.join("\n\t")}"
|
40
|
+
raise PSE, "Invalid entity of type '#{entity_name}' in file '#{file}'"
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
rescue => e
|
46
|
+
logger.error "Invalid store file '#{file}'"
|
47
|
+
logger.debug "#{e.message}\nBacktrace:\n#{e.backtrace.join("\n\t")}"
|
48
|
+
raise unless continue_on_error
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
private
|
54
|
+
|
55
|
+
def valid_path?(path)
|
56
|
+
Dir.exist? path and File.readable? path and File.writable? path
|
57
|
+
end
|
58
|
+
|
59
|
+
def add_and_index_entity(entity, store, entity_name)
|
60
|
+
entity.extend ProjectStore::Entity::Base
|
61
|
+
entity.name = entity_name
|
62
|
+
entity.basic_checks
|
63
|
+
logger.info "Found '#{entity.name}' of type '#{entity.type}'."
|
64
|
+
raise PSE, "Entity '#{entity.name}' already defined in file '#{project_entities[entity.name].backing_store.path}'" if project_entities[entity.name]
|
65
|
+
entity.backing_store = store
|
66
|
+
project_entities[entity.name] = entity
|
67
|
+
entity_types[entity.type] ||= []
|
68
|
+
entity_types[entity.type] << entity
|
69
|
+
stores[store] << entity
|
70
|
+
end
|
71
|
+
|
72
|
+
|
73
|
+
|
74
|
+
end
|
75
|
+
|
76
|
+
|
77
|
+
end
|
@@ -0,0 +1,60 @@
|
|
1
|
+
require 'tempfile'
|
2
|
+
require 'fileutils'
|
3
|
+
|
4
|
+
module ProjectStore
|
5
|
+
|
6
|
+
module Editing
|
7
|
+
|
8
|
+
attr_writer :editor
|
9
|
+
|
10
|
+
def editor
|
11
|
+
@editor ||= ENV['EDITOR']
|
12
|
+
end
|
13
|
+
|
14
|
+
def edit(file_or_entity)
|
15
|
+
file = case file_or_entity
|
16
|
+
when String
|
17
|
+
if File.exists? file_or_entity and File.readable? file_or_entity
|
18
|
+
file_or_entity
|
19
|
+
else
|
20
|
+
raise PSE, "Invalid file to edit '#{file_or_entity}'"
|
21
|
+
end
|
22
|
+
when ProjectStore::Entity::Base
|
23
|
+
file_or_entity.backing_store.path
|
24
|
+
end
|
25
|
+
tmp_file = Tempfile.new(self.class.name).path
|
26
|
+
begin
|
27
|
+
FileUtils.copy file, tmp_file
|
28
|
+
edit_file tmp_file
|
29
|
+
begin
|
30
|
+
store = YAML::Store.new(tmp_file)
|
31
|
+
store.transaction do
|
32
|
+
store.roots.each do |entity_type|
|
33
|
+
store[entity_type]
|
34
|
+
end
|
35
|
+
end
|
36
|
+
FileUtils.copy tmp_file, file
|
37
|
+
logger.info "File '#{file}' updated successfully."
|
38
|
+
file
|
39
|
+
rescue => e
|
40
|
+
logger.debug "#{e.message}\nBacktrace:\n#{e.backtrace.join("\n\t")}"
|
41
|
+
raise PSE, 'Invalid modifications. Aborted !'
|
42
|
+
end
|
43
|
+
ensure
|
44
|
+
File.unlink tmp_file
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
48
|
+
|
49
|
+
private
|
50
|
+
|
51
|
+
def edit_file(file)
|
52
|
+
raise PSE, 'No editor specified' if editor.nil?
|
53
|
+
logger.debug "Editing file '#{file}', using editor '#{editor}'"
|
54
|
+
`"#{editor}" "#{file}"`
|
55
|
+
end
|
56
|
+
|
57
|
+
|
58
|
+
end
|
59
|
+
|
60
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
module ProjectStore
|
2
|
+
module Entity
|
3
|
+
|
4
|
+
module Base
|
5
|
+
|
6
|
+
include ProjectStore::Entity::MandatoryProperties
|
7
|
+
|
8
|
+
attr_reader :backing_store
|
9
|
+
|
10
|
+
def backing_store=(store)
|
11
|
+
raise PSE, 'Cannot change the store for an entity' if @backing_store
|
12
|
+
@backing_store = store
|
13
|
+
end
|
14
|
+
|
15
|
+
def save
|
16
|
+
ProjectStore.logger.info "Saving '#{name}' into '#{backing_store.path}'"
|
17
|
+
backing_store.transaction do
|
18
|
+
backing_store[name] = self
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
|
23
|
+
def basic_checks
|
24
|
+
raise PSE, 'Invalid entity. Missing name' unless name
|
25
|
+
raise PSE, 'Invalid entity. You should not specify a name as it would not be taken in account' if self[:name]
|
26
|
+
raise PSE, "Invalid entity '#{name}'. Missing type" unless type
|
27
|
+
raise PSE, "Invalid entity '#{name}'. Forbidden 'backing_store' entry" if self[:backing_store]
|
28
|
+
raise PSE, "Invalid entity '#{name}'. Forbidden 'basic_checks' entry" if self[:basic_checks]
|
29
|
+
raise PSE, "Invalid entity '#{name}'. Forbidden 'save' entry" if self[:save]
|
30
|
+
raise PSE, "Invalid entity '#{name}'. Forbidden 'internal_type' entry" if self[:internal_type]
|
31
|
+
end
|
32
|
+
|
33
|
+
end
|
34
|
+
|
35
|
+
end
|
36
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
module ProjectStore
|
2
|
+
module Entity
|
3
|
+
|
4
|
+
module CommonProperties
|
5
|
+
|
6
|
+
def description
|
7
|
+
self[:description]
|
8
|
+
end
|
9
|
+
|
10
|
+
def description=(description)
|
11
|
+
self[:description] = description
|
12
|
+
end
|
13
|
+
|
14
|
+
def data
|
15
|
+
self[:data]
|
16
|
+
end
|
17
|
+
|
18
|
+
def data=(data)
|
19
|
+
self[:data] = data
|
20
|
+
end
|
21
|
+
|
22
|
+
end
|
23
|
+
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
require 'fileutils'
|
2
|
+
|
3
|
+
module ProjectStore
|
4
|
+
|
5
|
+
module Initializer
|
6
|
+
|
7
|
+
|
8
|
+
def self.setup(path = Dir.pwd)
|
9
|
+
FileUtils.mkpath path
|
10
|
+
end
|
11
|
+
|
12
|
+
private
|
13
|
+
|
14
|
+
def find_store_dir(dir_basename, from_dir)
|
15
|
+
raise "Invalid directory '#{from_dir}'" unless Dir.exist?(from_dir) and File.readable?(from_dir)
|
16
|
+
|
17
|
+
candidate = File.join from_dir, dir_basename
|
18
|
+
|
19
|
+
if Dir.exists? candidate
|
20
|
+
if File.readable? candidate and File.writable? candidate
|
21
|
+
candidate
|
22
|
+
else
|
23
|
+
raise "Found a project directory '#{candidate}', but with wrong access rights."
|
24
|
+
end
|
25
|
+
else
|
26
|
+
next_dir = File.expand_path '..', from_dir
|
27
|
+
if next_dir == from_dir
|
28
|
+
raise 'No project directory found.'
|
29
|
+
else
|
30
|
+
find_store_dir dir_basename, next_dir
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
end
|
35
|
+
|
36
|
+
|
37
|
+
|
38
|
+
end
|
39
|
+
|
40
|
+
|
41
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'project_store/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'project_store'
|
8
|
+
spec.version = ProjectStore::VERSION
|
9
|
+
spec.authors = ['Laurent B.']
|
10
|
+
spec.email = ['lbnetid+gh@gmail.com']
|
11
|
+
|
12
|
+
spec.summary = %q{Store any Ruby object in a Yaml store.}
|
13
|
+
spec.description = %q{Store, retrieve and edit a collection of Yaml entities.}
|
14
|
+
spec.homepage = 'https://github.com/lbriais/project_store'
|
15
|
+
spec.license = 'MIT'
|
16
|
+
|
17
|
+
|
18
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
19
|
+
spec.bindir = 'exe'
|
20
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
21
|
+
spec.require_paths = ['lib']
|
22
|
+
|
23
|
+
spec.add_development_dependency 'bundler', '~> 1.11'
|
24
|
+
spec.add_development_dependency 'rake', '~> 10.0'
|
25
|
+
spec.add_development_dependency 'rspec'
|
26
|
+
spec.add_development_dependency 'pry'
|
27
|
+
|
28
|
+
|
29
|
+
end
|
metadata
ADDED
@@ -0,0 +1,120 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: project_store
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Laurent B.
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-07-14 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.11'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.11'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: pry
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
description: Store, retrieve and edit a collection of Yaml entities.
|
70
|
+
email:
|
71
|
+
- lbnetid+gh@gmail.com
|
72
|
+
executables: []
|
73
|
+
extensions: []
|
74
|
+
extra_rdoc_files: []
|
75
|
+
files:
|
76
|
+
- ".gitignore"
|
77
|
+
- ".rspec"
|
78
|
+
- ".travis.yml"
|
79
|
+
- CODE_OF_CONDUCT.md
|
80
|
+
- Gemfile
|
81
|
+
- LICENSE.txt
|
82
|
+
- README.md
|
83
|
+
- Rakefile
|
84
|
+
- bin/console
|
85
|
+
- bin/setup
|
86
|
+
- lib/project_store.rb
|
87
|
+
- lib/project_store/base.rb
|
88
|
+
- lib/project_store/editing.rb
|
89
|
+
- lib/project_store/entity/base.rb
|
90
|
+
- lib/project_store/entity/common_properties.rb
|
91
|
+
- lib/project_store/entity/mandatory_properties.rb
|
92
|
+
- lib/project_store/error.rb
|
93
|
+
- lib/project_store/initializer.rb
|
94
|
+
- lib/project_store/version.rb
|
95
|
+
- project_store.gemspec
|
96
|
+
homepage: https://github.com/lbriais/project_store
|
97
|
+
licenses:
|
98
|
+
- MIT
|
99
|
+
metadata: {}
|
100
|
+
post_install_message:
|
101
|
+
rdoc_options: []
|
102
|
+
require_paths:
|
103
|
+
- lib
|
104
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
105
|
+
requirements:
|
106
|
+
- - ">="
|
107
|
+
- !ruby/object:Gem::Version
|
108
|
+
version: '0'
|
109
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
110
|
+
requirements:
|
111
|
+
- - ">="
|
112
|
+
- !ruby/object:Gem::Version
|
113
|
+
version: '0'
|
114
|
+
requirements: []
|
115
|
+
rubyforge_project:
|
116
|
+
rubygems_version: 2.4.5.1
|
117
|
+
signing_key:
|
118
|
+
specification_version: 4
|
119
|
+
summary: Store any Ruby object in a Yaml store.
|
120
|
+
test_files: []
|