rounders-yaml 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +54 -0
- data/.rakeTasks +7 -0
- data/.travis.yml +9 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +85 -0
- data/MIT-LICENSE +20 -0
- data/README.md +38 -0
- data/Rakefile +4 -0
- data/lib/rounders/stores/yaml.rb +26 -0
- data/lib/rounders/yaml.rb +8 -0
- data/lib/rounders/yaml/version.rb +5 -0
- data/rounders-yaml.gemspec +25 -0
- data/spec/rounders/stores/yaml_spec.rb +32 -0
- data/spec/rounders/yaml_spec.rb +7 -0
- data/spec/spec_helper.rb +124 -0
- metadata +147 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 7d7e9f45887759f0aa7c53899c48b35b9f7fcb19
|
4
|
+
data.tar.gz: b37f988113be43de520a3da01115f7da84bdb0aa
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 10602826829ca837cc9575d45cadb57a4651e9613471501fda383c3ce62b770fdfd7858fb7f73a2e0550aa41ad0bfaad2b085351a7adbdf381c5c7139f7fe753
|
7
|
+
data.tar.gz: ef592b9b8c013c1f024aac94ee22d44d043cd8e6dd7f93ff8651594e8afe24b8781ad6c04eca2f8593b907e37202af1102f4a9bf5178257016d5ca9eb5ebde06
|
data/.gitignore
ADDED
@@ -0,0 +1,54 @@
|
|
1
|
+
### https://raw.github.com/github/gitignore/9f6724149b9a0a861b402683f6c50c5f085d130b/ruby.gitignore
|
2
|
+
|
3
|
+
*.gem
|
4
|
+
*.rbc
|
5
|
+
/.config
|
6
|
+
/coverage/
|
7
|
+
/InstalledFiles
|
8
|
+
/pkg/
|
9
|
+
/spec/reports/
|
10
|
+
/spec/examples.txt
|
11
|
+
/test/tmp/
|
12
|
+
/test/version_tmp/
|
13
|
+
/tmp/
|
14
|
+
|
15
|
+
# Used by dotenv library to load environment variables.
|
16
|
+
# .env
|
17
|
+
|
18
|
+
## Specific to RubyMotion:
|
19
|
+
.dat*
|
20
|
+
.repl_history
|
21
|
+
build/
|
22
|
+
*.bridgesupport
|
23
|
+
build-iPhoneOS/
|
24
|
+
build-iPhoneSimulator/
|
25
|
+
|
26
|
+
## Specific to RubyMotion (use of CocoaPods):
|
27
|
+
#
|
28
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
29
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
30
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
31
|
+
#
|
32
|
+
# vendor/Pods/
|
33
|
+
|
34
|
+
## Documentation cache and generated files:
|
35
|
+
/.yardoc/
|
36
|
+
/_yardoc/
|
37
|
+
/doc/
|
38
|
+
/rdoc/
|
39
|
+
|
40
|
+
## Environment normalization:
|
41
|
+
/.bundle/
|
42
|
+
/vendor/bundle
|
43
|
+
/lib/bundler/man/
|
44
|
+
|
45
|
+
# for a library or gem, you might want to ignore these files since the code is
|
46
|
+
# intended to run in multiple environments; otherwise, check them in:
|
47
|
+
# Gemfile.lock
|
48
|
+
# .ruby-version
|
49
|
+
# .ruby-gemset
|
50
|
+
|
51
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
52
|
+
.rvmrc
|
53
|
+
|
54
|
+
|
data/.rakeTasks
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<Settings><!--This file was automatically generated by Ruby plugin.
|
3
|
+
You are allowed to:
|
4
|
+
1. Remove rake task
|
5
|
+
2. Add existing rake tasks
|
6
|
+
To add existing rake tasks automatically delete this file and reload the project.
|
7
|
+
--><RakeGroup description="" fullCmd="" taksId="rake" /></Settings>
|
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,85 @@
|
|
1
|
+
GIT
|
2
|
+
remote: git://github.com/rike422/rounders
|
3
|
+
revision: 1319515ad8ff71078c1109923cac56c23fe00cb6
|
4
|
+
branch: config
|
5
|
+
specs:
|
6
|
+
rounders (0.6.0)
|
7
|
+
dotenv
|
8
|
+
hanami-utils
|
9
|
+
mail (~> 2.6.4)
|
10
|
+
mail-gpg
|
11
|
+
thor
|
12
|
+
topping
|
13
|
+
|
14
|
+
PATH
|
15
|
+
remote: .
|
16
|
+
specs:
|
17
|
+
rounders-yaml (0.1.0)
|
18
|
+
rounders (~> 0.6.0)
|
19
|
+
|
20
|
+
GEM
|
21
|
+
remote: https://rubygems.org/
|
22
|
+
specs:
|
23
|
+
coveralls (0.8.21)
|
24
|
+
json (>= 1.8, < 3)
|
25
|
+
simplecov (~> 0.14.1)
|
26
|
+
term-ansicolor (~> 1.3)
|
27
|
+
thor (~> 0.19.4)
|
28
|
+
tins (~> 1.6)
|
29
|
+
diff-lcs (1.3)
|
30
|
+
docile (1.1.5)
|
31
|
+
dotenv (2.2.1)
|
32
|
+
gpgme (2.0.13)
|
33
|
+
mini_portile2 (~> 2.1)
|
34
|
+
hanami-utils (1.0.2)
|
35
|
+
transproc (~> 1.0)
|
36
|
+
json (2.1.0)
|
37
|
+
mail (2.6.6)
|
38
|
+
mime-types (>= 1.16, < 4)
|
39
|
+
mail-gpg (0.3.1)
|
40
|
+
gpgme (~> 2.0, >= 2.0.2)
|
41
|
+
mail (~> 2.5, >= 2.5.3)
|
42
|
+
mime-types (3.1)
|
43
|
+
mime-types-data (~> 3.2015)
|
44
|
+
mime-types-data (3.2016.0521)
|
45
|
+
mini_portile2 (2.2.0)
|
46
|
+
rake (12.0.0)
|
47
|
+
rspec (3.6.0)
|
48
|
+
rspec-core (~> 3.6.0)
|
49
|
+
rspec-expectations (~> 3.6.0)
|
50
|
+
rspec-mocks (~> 3.6.0)
|
51
|
+
rspec-core (3.6.0)
|
52
|
+
rspec-support (~> 3.6.0)
|
53
|
+
rspec-expectations (3.6.0)
|
54
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
55
|
+
rspec-support (~> 3.6.0)
|
56
|
+
rspec-mocks (3.6.0)
|
57
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
58
|
+
rspec-support (~> 3.6.0)
|
59
|
+
rspec-support (3.6.0)
|
60
|
+
simplecov (0.14.1)
|
61
|
+
docile (~> 1.1.0)
|
62
|
+
json (>= 1.8, < 3)
|
63
|
+
simplecov-html (~> 0.10.0)
|
64
|
+
simplecov-html (0.10.1)
|
65
|
+
term-ansicolor (1.6.0)
|
66
|
+
tins (~> 1.0)
|
67
|
+
thor (0.19.4)
|
68
|
+
tins (1.15.0)
|
69
|
+
topping (0.0.2)
|
70
|
+
transproc (1.0.2)
|
71
|
+
|
72
|
+
PLATFORMS
|
73
|
+
ruby
|
74
|
+
|
75
|
+
DEPENDENCIES
|
76
|
+
bundler
|
77
|
+
coveralls
|
78
|
+
rake
|
79
|
+
rounders!
|
80
|
+
rounders-yaml!
|
81
|
+
rspec (~> 3.0)
|
82
|
+
simplecov
|
83
|
+
|
84
|
+
BUNDLED WITH
|
85
|
+
1.15.2
|
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright 2017 YOURNAME
|
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.
|
data/README.md
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
# Rounders::Yaml [![Gem Version](https://badge.fury.io/rb/rounders-yaml.svg)](https://badge.fury.io/rb/rounders-yaml) [![Build Status](https://travis-ci.org/rike422/rounders-yaml.svg?branch=master)](https://travis-ci.org/rike422/rounders-yaml) [![Code Climate](https://codeclimate.com/github/rike422/rounders-yaml/badges/gpa.svg)](https://codeclimate.com/github/rike422/rounders-yaml) [![Coverage Status](https://coveralls.io/repos/github/rike422/rounders-yaml/badge.svg?branch=master)](https://coveralls.io/github/rike422/rounders-yaml?branch=master)
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'rounders-yaml'
|
11
|
+
```
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle
|
16
|
+
|
17
|
+
## Usage
|
18
|
+
|
19
|
+
### configratin
|
20
|
+
|
21
|
+
Update to application.rb
|
22
|
+
|
23
|
+
```ruby
|
24
|
+
|
25
|
+
# enable this plugin
|
26
|
+
config.store = :yaml
|
27
|
+
|
28
|
+
# configraton store fle path
|
29
|
+
config.stores.yaml.file = 'file_path'
|
30
|
+
|
31
|
+
```
|
32
|
+
|
33
|
+
|
34
|
+
## License
|
35
|
+
|
36
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
37
|
+
|
38
|
+
This project rocks and uses MIT-LICENSE.
|
data/Rakefile
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
require 'yaml'
|
2
|
+
require 'yaml/store'
|
3
|
+
|
4
|
+
module Rounders
|
5
|
+
module Stores
|
6
|
+
class YAML < Rounders::Stores::Store
|
7
|
+
config :file, required: true, type: String
|
8
|
+
|
9
|
+
def [](key)
|
10
|
+
data.transaction do
|
11
|
+
super
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
def []=(key, value)
|
16
|
+
data.transaction do
|
17
|
+
super
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
def data
|
22
|
+
@data ||= ::YAML::Store.new(config.file)
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
$:.push File.expand_path("../lib", __FILE__)
|
2
|
+
|
3
|
+
# Maintain your gem's version:
|
4
|
+
require 'rounders/yaml/version'
|
5
|
+
|
6
|
+
# Describe your gem and declare its dependencies:
|
7
|
+
Gem::Specification.new do |s|
|
8
|
+
s.name = 'rounders-yaml'
|
9
|
+
s.version = Rounders::Yaml::VERSION
|
10
|
+
s.authors = ['Akira Takahashi']
|
11
|
+
s.email = ['rike422@gmail.com']
|
12
|
+
s.homepage = 'https://github.com/rike422/rounders-yaml'
|
13
|
+
s.summary = 'Store Rounders temp data in YAML.'
|
14
|
+
s.description = 'Store Rounders temp data in YAML.'
|
15
|
+
s.license = 'MIT'
|
16
|
+
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
17
|
+
s.test_files = Dir["spec/**/*"]
|
18
|
+
s.require_paths = ['app','lib']
|
19
|
+
s.add_dependency 'rounders', '> 0.7.0'
|
20
|
+
s.add_development_dependency 'bundler'
|
21
|
+
s.add_development_dependency 'rake'
|
22
|
+
s.add_development_dependency 'rspec', '~> 3.0'
|
23
|
+
s.add_development_dependency 'simplecov'
|
24
|
+
s.add_development_dependency 'coveralls'
|
25
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Rounders::Stores::YAML do
|
4
|
+
let(:described_class) { Rounders::Stores::YAML }
|
5
|
+
let(:described_instance) { described_class.new(*args) }
|
6
|
+
let(:args) { [] }
|
7
|
+
|
8
|
+
before do
|
9
|
+
Rounders::Stores::YAML.configure do |c|
|
10
|
+
c.file = 'tmp/store.yaml'
|
11
|
+
end
|
12
|
+
end
|
13
|
+
describe '#initialize' do
|
14
|
+
subject { described_instance }
|
15
|
+
it { is_expected.to be_a described_class }
|
16
|
+
end
|
17
|
+
|
18
|
+
describe '#initialize' do
|
19
|
+
subject { described_instance }
|
20
|
+
it { is_expected.to be_a described_class }
|
21
|
+
end
|
22
|
+
|
23
|
+
describe 'data' do
|
24
|
+
it 'should be return nil' do
|
25
|
+
expect(described_instance[:empty_data]).to eq nil
|
26
|
+
end
|
27
|
+
it 'should be to sets and gets value' do
|
28
|
+
described_instance[:data] = 'hogehoge'
|
29
|
+
expect(described_instance[:data]).to eq 'hogehoge'
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,124 @@
|
|
1
|
+
$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
|
2
|
+
if ENV['CI']
|
3
|
+
require 'simplecov'
|
4
|
+
require 'coveralls'
|
5
|
+
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new(
|
6
|
+
[
|
7
|
+
SimpleCov::Formatter::HTMLFormatter,
|
8
|
+
Coveralls::SimpleCov::Formatter
|
9
|
+
]
|
10
|
+
)
|
11
|
+
SimpleCov.start do
|
12
|
+
add_group 'lib', 'lib'
|
13
|
+
add_filter '/vendor/'
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
# This file was generated by the `rspec --init` command. Conventionally, all
|
18
|
+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
19
|
+
# The generated `.rspec` file contains `--require spec_helper` which will cause
|
20
|
+
# this file to always be loaded, without a need to explicitly require it in any
|
21
|
+
# files.
|
22
|
+
#
|
23
|
+
# Given that it is always loaded, you are encouraged to keep this file as
|
24
|
+
# light-weight as possible. Requiring heavyweight dependencies from this file
|
25
|
+
# will add to the boot time of your test suite on EVERY test run, even for an
|
26
|
+
# individual file that may not need all of that loaded. Instead, consider making
|
27
|
+
# a separate helper file that requires the additional dependencies and performs
|
28
|
+
# the additional setup, and require it from the spec files that actually need
|
29
|
+
# it.
|
30
|
+
#
|
31
|
+
# The `.rspec` file also contains a few flags that are not defaults but that
|
32
|
+
# users commonly want.
|
33
|
+
#
|
34
|
+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
35
|
+
RSpec.configure do |config|
|
36
|
+
# rspec-expectations config goes here. You can use an alternate
|
37
|
+
# assertion/expectation library such as wrong or the stdlib/minitest
|
38
|
+
# assertions if you prefer.
|
39
|
+
config.expect_with :rspec do |expectations|
|
40
|
+
# This option will default to `true` in RSpec 4. It makes the `description`
|
41
|
+
# and `failure_message` of custom matchers include text for helper methods
|
42
|
+
# defined using `chain`, e.g.:
|
43
|
+
# be_bigger_than(2).and_smaller_than(4).description
|
44
|
+
# # => "be bigger than 2 and smaller than 4"
|
45
|
+
# ...rather than:
|
46
|
+
# # => "be bigger than 2"
|
47
|
+
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
48
|
+
end
|
49
|
+
|
50
|
+
# rspec-mocks config goes here. You can use an alternate test double
|
51
|
+
# library (such as bogus or mocha) by changing the `mock_with` option here.
|
52
|
+
config.mock_with :rspec do |mocks|
|
53
|
+
# Prevents you from mocking or stubbing a method that does not exist on
|
54
|
+
# a real object. This is generally recommended, and will default to
|
55
|
+
# `true` in RSpec 4.
|
56
|
+
mocks.verify_partial_doubles = true
|
57
|
+
end
|
58
|
+
|
59
|
+
# This option will default to `:apply_to_host_groups` in RSpec 4 (and will
|
60
|
+
# have no way to turn it off -- the option exists only for backwards
|
61
|
+
# compatibility in RSpec 3). It causes shared context metadata to be
|
62
|
+
# inherited by the metadata hash of host groups and examples, rather than
|
63
|
+
# triggering implicit auto-inclusion in groups with matching metadata.
|
64
|
+
config.shared_context_metadata_behavior = :apply_to_host_groups
|
65
|
+
|
66
|
+
# The settings below are suggested to provide a good initial experience
|
67
|
+
# with RSpec, but feel free to customize to your heart's content.
|
68
|
+
=begin
|
69
|
+
# This allows you to limit a spec run to individual examples or groups
|
70
|
+
# you care about by tagging them with `:focus` metadata. When nothing
|
71
|
+
# is tagged with `:focus`, all examples get run. RSpec also provides
|
72
|
+
# aliases for `it`, `describe`, and `context` that include `:focus`
|
73
|
+
# metadata: `fit`, `fdescribe` and `fcontext`, respectively.
|
74
|
+
config.filter_run_when_matching :focus
|
75
|
+
|
76
|
+
# Allows RSpec to persist some state between runs in order to support
|
77
|
+
# the `--only-failures` and `--next-failure` CLI options. We recommend
|
78
|
+
# you configure your source control system to ignore this file.
|
79
|
+
config.example_status_persistence_file_path = "spec/examples.txt"
|
80
|
+
|
81
|
+
# Limits the available syntax to the non-monkey patched syntax that is
|
82
|
+
# recommended. For more details, see:
|
83
|
+
# - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
|
84
|
+
# - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
|
85
|
+
# - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
|
86
|
+
config.disable_monkey_patching!
|
87
|
+
|
88
|
+
# This setting enables warnings. It's recommended, but in some cases may
|
89
|
+
# be too noisy due to issues in dependencies.
|
90
|
+
config.warnings = true
|
91
|
+
|
92
|
+
# Many RSpec users commonly either run the entire suite or an individual
|
93
|
+
# file, and it's useful to allow more verbose output when running an
|
94
|
+
# individual spec file.
|
95
|
+
if config.files_to_run.one?
|
96
|
+
# Use the documentation formatter for detailed output,
|
97
|
+
# unless a formatter has already been configured
|
98
|
+
# (e.g. via a command-line flag).
|
99
|
+
config.default_formatter = 'doc'
|
100
|
+
end
|
101
|
+
|
102
|
+
# Print the 10 slowest examples and example groups at the
|
103
|
+
# end of the spec run, to help surface which specs are running
|
104
|
+
# particularly slow.
|
105
|
+
config.profile_examples = 10
|
106
|
+
|
107
|
+
# Run specs in random order to surface order dependencies. If you find an
|
108
|
+
# order dependency and want to debug it, you can fix the order by providing
|
109
|
+
# the seed, which is printed after each run.
|
110
|
+
# --seed 1234
|
111
|
+
config.order = :random
|
112
|
+
|
113
|
+
# Seed global randomization in this process using the `--seed` CLI option.
|
114
|
+
# Setting this allows you to use `--seed` to deterministically reproduce
|
115
|
+
# test failures related to randomization by passing the same `--seed` value
|
116
|
+
# as the one that triggered the failure.
|
117
|
+
Kernel.srand config.seed
|
118
|
+
=end
|
119
|
+
end
|
120
|
+
|
121
|
+
|
122
|
+
require 'rounders'
|
123
|
+
require 'rounders/spec'
|
124
|
+
require 'rounders/yaml'
|
metadata
ADDED
@@ -0,0 +1,147 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rounders-yaml
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Akira Takahashi
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-07-21 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rounders
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 0.7.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.7.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
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: rake
|
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: rspec
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '3.0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '3.0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: simplecov
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: coveralls
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
description: Store Rounders temp data in YAML.
|
98
|
+
email:
|
99
|
+
- rike422@gmail.com
|
100
|
+
executables: []
|
101
|
+
extensions: []
|
102
|
+
extra_rdoc_files: []
|
103
|
+
files:
|
104
|
+
- ".gitignore"
|
105
|
+
- ".rakeTasks"
|
106
|
+
- ".travis.yml"
|
107
|
+
- Gemfile
|
108
|
+
- Gemfile.lock
|
109
|
+
- MIT-LICENSE
|
110
|
+
- README.md
|
111
|
+
- Rakefile
|
112
|
+
- lib/rounders/stores/yaml.rb
|
113
|
+
- lib/rounders/yaml.rb
|
114
|
+
- lib/rounders/yaml/version.rb
|
115
|
+
- rounders-yaml.gemspec
|
116
|
+
- spec/rounders/stores/yaml_spec.rb
|
117
|
+
- spec/rounders/yaml_spec.rb
|
118
|
+
- spec/spec_helper.rb
|
119
|
+
homepage: https://github.com/rike422/rounders-yaml
|
120
|
+
licenses:
|
121
|
+
- MIT
|
122
|
+
metadata: {}
|
123
|
+
post_install_message:
|
124
|
+
rdoc_options: []
|
125
|
+
require_paths:
|
126
|
+
- app
|
127
|
+
- lib
|
128
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
129
|
+
requirements:
|
130
|
+
- - ">="
|
131
|
+
- !ruby/object:Gem::Version
|
132
|
+
version: '0'
|
133
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
134
|
+
requirements:
|
135
|
+
- - ">="
|
136
|
+
- !ruby/object:Gem::Version
|
137
|
+
version: '0'
|
138
|
+
requirements: []
|
139
|
+
rubyforge_project:
|
140
|
+
rubygems_version: 2.6.11
|
141
|
+
signing_key:
|
142
|
+
specification_version: 4
|
143
|
+
summary: Store Rounders temp data in YAML.
|
144
|
+
test_files:
|
145
|
+
- spec/rounders/stores/yaml_spec.rb
|
146
|
+
- spec/rounders/yaml_spec.rb
|
147
|
+
- spec/spec_helper.rb
|