yinx_st 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 +11 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +28 -0
- data/Rakefile +10 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/yinx_st/batches.rb +46 -0
- data/lib/yinx_st/chart.erb +74 -0
- data/lib/yinx_st/note_meta.rb +36 -0
- data/lib/yinx_st/version.rb +3 -0
- data/lib/yinx_st.rb +82 -0
- data/yinx_st.gemspec +31 -0
- metadata +157 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 0e3a00b9463f3bfda293d646fdc2af626cf11695
|
4
|
+
data.tar.gz: 86590d9905a8e2a9a9ea4823440681503747f443
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: efe17e2d56adf0ea331ac0f1d168e11f4a83675237f7d93306d4d1bf1e802b41d0fa3dd690503b044e70a66a4a7b591adeb8c9c930fbecd2798deeeb63e7df60
|
7
|
+
data.tar.gz: bc83e133888d95cc1e0776f19a0e1a765cf6d7fa4659c6906c30842bd39f88b076b72107ea40c895bfa49774491a09994d44c7394864ec7bdb657b5239b67294
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at block24block@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2017 ken
|
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,28 @@
|
|
1
|
+
# YinxSt
|
2
|
+
|
3
|
+
Generate report of statistics for my evernote. [Demo](whispering-fortress-75887.herokuapp.com)
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'yinx_st'
|
11
|
+
```
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle
|
16
|
+
|
17
|
+
Or install it yourself as:
|
18
|
+
|
19
|
+
$ gem install yinx_st
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
`my_db_url` should contain table adapts to `yinx_sql/json_batch`
|
24
|
+
|
25
|
+
```ruby
|
26
|
+
YinxSt.fetch(my_db_url).last_n_days(28)
|
27
|
+
```
|
28
|
+
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "yinx_st"
|
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(__FILE__)
|
data/bin/setup
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
require 'yinx'
|
2
|
+
require 'yinx_sql/json_batch'
|
3
|
+
|
4
|
+
module YinxSt
|
5
|
+
class Batches
|
6
|
+
attr_reader :all_notes
|
7
|
+
|
8
|
+
def initialize n
|
9
|
+
batches = Yinx::SQL::JsonBatch.last(n)
|
10
|
+
@all_notes = batches.map do |b|
|
11
|
+
b.batch.map do |h|
|
12
|
+
n = Yinx::NoteMeta.from_h h
|
13
|
+
n.dump_id = b.id
|
14
|
+
n.dump_at = (b.fixed_dump_date or b.created_at)
|
15
|
+
n.batches = self
|
16
|
+
n
|
17
|
+
end
|
18
|
+
end.flatten
|
19
|
+
end
|
20
|
+
|
21
|
+
def of_guid guid
|
22
|
+
batches_of_each_note[guid]
|
23
|
+
end
|
24
|
+
|
25
|
+
def batches_of_each_note
|
26
|
+
@batches_of_each_note ||= Hash[
|
27
|
+
all_notes.
|
28
|
+
group_by(&:guid).
|
29
|
+
map{|guid, versions| [guid, versions.sort{|v1, v2| v2.dump_id <=> v1.dump_id}]}
|
30
|
+
]
|
31
|
+
end
|
32
|
+
|
33
|
+
def latest_id
|
34
|
+
@latest_id ||= @all_notes.max{|n1, n2| n1.dump_id <=> n2.dump_id}.dump_id
|
35
|
+
end
|
36
|
+
|
37
|
+
def unwind_tags
|
38
|
+
@unwind_tags ||= all_notes.map{|note| note.unwind_tags}.flatten
|
39
|
+
end
|
40
|
+
|
41
|
+
def time_line
|
42
|
+
@time_line ||= all_notes.map(&:dump_day).uniq.sort
|
43
|
+
end
|
44
|
+
|
45
|
+
end
|
46
|
+
end
|
@@ -0,0 +1,74 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8" />
|
5
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.1.3/Chart.min.js"></script>
|
6
|
+
<style>
|
7
|
+
html,body {
|
8
|
+
height: 100%;
|
9
|
+
}
|
10
|
+
|
11
|
+
.my_chart {
|
12
|
+
height: 100%;
|
13
|
+
position:relative;
|
14
|
+
left: 5%;
|
15
|
+
width: 95%;
|
16
|
+
}
|
17
|
+
|
18
|
+
canvas {
|
19
|
+
position: absolute;
|
20
|
+
top: 25%;
|
21
|
+
left: 50%;
|
22
|
+
transform: translateY(-50%);
|
23
|
+
transform: translateX(-50%);
|
24
|
+
}
|
25
|
+
|
26
|
+
h1 {
|
27
|
+
position: absolute;
|
28
|
+
top: 10%;
|
29
|
+
left: 20%;
|
30
|
+
}
|
31
|
+
|
32
|
+
nav {
|
33
|
+
position: fixed;
|
34
|
+
height: 100%;
|
35
|
+
float: left;
|
36
|
+
}
|
37
|
+
|
38
|
+
nav ul {
|
39
|
+
position: relative;
|
40
|
+
top: 25%;
|
41
|
+
}
|
42
|
+
|
43
|
+
nav li {
|
44
|
+
list-style-type: none;
|
45
|
+
margin-top: 20px;
|
46
|
+
}
|
47
|
+
|
48
|
+
nav a {
|
49
|
+
text-decoration: none;
|
50
|
+
padding: 3px 3px 3px 3px;
|
51
|
+
background-color: lightgray;
|
52
|
+
width: 20px;
|
53
|
+
display: block;
|
54
|
+
text-align: center;
|
55
|
+
color: white;
|
56
|
+
}
|
57
|
+
</style>
|
58
|
+
</head>
|
59
|
+
<body>
|
60
|
+
<nav>
|
61
|
+
<ul>
|
62
|
+
<% chart.chart_tags.each_with_index do |t, i| %>
|
63
|
+
<li>
|
64
|
+
<a href='#<%= i + 1%>' title='<%= t.name%>' ><%= i + 1%></a>
|
65
|
+
</li>
|
66
|
+
<% end %>
|
67
|
+
</ul>
|
68
|
+
</nav>
|
69
|
+
<% chart.chart_tags.each_with_index do |t, i| %>
|
70
|
+
<div id='<%= i + 1%>'></div>
|
71
|
+
<%= t.default_html %>
|
72
|
+
<% end %>
|
73
|
+
</body>
|
74
|
+
</html>
|
@@ -0,0 +1,36 @@
|
|
1
|
+
require 'yinx'
|
2
|
+
|
3
|
+
class Yinx::NoteMeta
|
4
|
+
attr_accessor :dump_id, :dump_at, :batches
|
5
|
+
|
6
|
+
def dump_day
|
7
|
+
dump_at.strftime '%y/%m/%d %a'
|
8
|
+
end
|
9
|
+
|
10
|
+
def updated_today?
|
11
|
+
updated_at.between? (dump_at - 1.day), dump_at
|
12
|
+
end
|
13
|
+
|
14
|
+
def created_today?
|
15
|
+
created_at.between? (dump_at - 1.day), dump_at
|
16
|
+
end
|
17
|
+
|
18
|
+
def status
|
19
|
+
return :created if created_today?
|
20
|
+
return :updated if updated_today?
|
21
|
+
:remained
|
22
|
+
end
|
23
|
+
|
24
|
+
def prev_version
|
25
|
+
@prev_version ||= batches.of_guid(guid).bsearch{|version| version.dump_id < self.dump_id}
|
26
|
+
end
|
27
|
+
|
28
|
+
def moved_book?
|
29
|
+
prev_version and prev_version.book != self.book and prev_version.stack != self.stack
|
30
|
+
end
|
31
|
+
|
32
|
+
def changed_tags?
|
33
|
+
prev_version and prev_version.tags.sort != self.tags.sort
|
34
|
+
end
|
35
|
+
|
36
|
+
end
|
data/lib/yinx_st.rb
ADDED
@@ -0,0 +1,82 @@
|
|
1
|
+
require "yinx_st/version"
|
2
|
+
require 'yinx'
|
3
|
+
require 'yinx_sql'
|
4
|
+
require 'my_chart'
|
5
|
+
require 'time_seq'
|
6
|
+
|
7
|
+
require 'yinx_st/note_meta'
|
8
|
+
require 'yinx_st/batches'
|
9
|
+
|
10
|
+
module YinxSt
|
11
|
+
class << self
|
12
|
+
def fetch *args
|
13
|
+
Yinx::SQL.connect(*args)
|
14
|
+
self
|
15
|
+
end
|
16
|
+
|
17
|
+
def last_n_days n
|
18
|
+
batches = Batches.new n
|
19
|
+
duration = "最近#{n}日"
|
20
|
+
|
21
|
+
chart = MyChart.js do
|
22
|
+
material batches.all_notes
|
23
|
+
material batches.unwind_tags, name: :unwind_tags
|
24
|
+
|
25
|
+
select :yesterday do |note|
|
26
|
+
note.dump_id == batches.latest_id
|
27
|
+
end
|
28
|
+
|
29
|
+
select :yesterday, from: :unwind_tags do |note|
|
30
|
+
note.dump_id == batches.latest_id
|
31
|
+
end
|
32
|
+
|
33
|
+
select :changed_content do |note|
|
34
|
+
note.status == :created or note.status == :updated
|
35
|
+
end
|
36
|
+
|
37
|
+
select :moved_book do |note|
|
38
|
+
note.moved_book?
|
39
|
+
end
|
40
|
+
|
41
|
+
select :changed_tags do |note|
|
42
|
+
note.changed_tags?
|
43
|
+
end
|
44
|
+
|
45
|
+
group_by :stack_book do |note|
|
46
|
+
stack = note.stack.nil? ? '' : "#{note.stack}/"
|
47
|
+
"#{stack}#{note.book}"
|
48
|
+
end
|
49
|
+
|
50
|
+
group_by(:stack){|note| note.stack or 'NO_STACK'}
|
51
|
+
|
52
|
+
group_by :number_of_tags do |note|
|
53
|
+
note.tags.count
|
54
|
+
end
|
55
|
+
|
56
|
+
plainBar :dump_day, name: "#{duration}总数变化", w: 1000, h:240, asc: :key
|
57
|
+
line :dump_day, :status, name: "#{duration}新建/修改", from: :changed_content, w: 1000, h:240, asc: :key, keys: batches.time_line
|
58
|
+
line :dump_day, name: "#{duration}移动笔记本", from: :moved_book, w: 1000, h:240, asc: :key, keys: batches.time_line
|
59
|
+
line :dump_day, name: "#{duration}更改标签", from: :changed_tags, w: 1000, h:240, asc: :key, keys: batches.time_line
|
60
|
+
|
61
|
+
bar :stack_book, name: '目前最大的10个笔记本', from: :yesterday, w:1400 ,h: 540, desc: :count, first: 10
|
62
|
+
line :dump_day, :stack_book, name: "#{duration}笔记本体积变化", w: 1200, h:540, asc: :key, keys: batches.time_line
|
63
|
+
|
64
|
+
bar :stack, name: '目前最大的10个笔记本组', from: :yesterday, w:1400 ,h: 240, desc: :count, first: 10
|
65
|
+
line :dump_day, :stack, name: "#{duration}笔记本组体积变化", w: 1000, h:340, asc: :key, keys: batches.time_line
|
66
|
+
|
67
|
+
pie :tags, name: '目前使用最多的15个标签', from: :yesterday__from__unwind_tags, w:1400 ,h: 340, desc: :count, first: 15
|
68
|
+
bar :number_of_tags, name: '目前每篇笔记的标签数', from: :yesterday, w: 800, h: 240, asc: :key
|
69
|
+
line :dump_day, :tags, name: "#{duration}标签数变化", from: :unwind_tags, w: 1400, h:740, asc: :key, keys: batches.time_line
|
70
|
+
|
71
|
+
end
|
72
|
+
|
73
|
+
generate_html chart
|
74
|
+
|
75
|
+
end
|
76
|
+
|
77
|
+
def generate_html chart
|
78
|
+
template = File.read File.expand_path('../yinx_st/chart.erb', __FILE__)
|
79
|
+
html = ERB.new(template).result(binding)
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
data/yinx_st.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
|
+
require 'yinx_st/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "yinx_st"
|
8
|
+
spec.version = YinxSt::VERSION
|
9
|
+
spec.authors = ["ken"]
|
10
|
+
spec.email = ["block24block@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{Statistics for yinx_sql}
|
13
|
+
spec.homepage = "https://github.com/turnon/yinx_st"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
17
|
+
f.match(%r{^(test|spec|features)/})
|
18
|
+
end
|
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.14"
|
24
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
25
|
+
spec.add_development_dependency "minitest", "~> 5.0"
|
26
|
+
|
27
|
+
spec.add_dependency "yinx", "~> 0.1.0"
|
28
|
+
spec.add_dependency "yinx_sql", "~> 0.1.2"
|
29
|
+
spec.add_dependency "my_chart", "~> 0.1.0"
|
30
|
+
spec.add_dependency "time_seq", "~> 0.1.0"
|
31
|
+
end
|
metadata
ADDED
@@ -0,0 +1,157 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: yinx_st
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- ken
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-02-27 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.14'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.14'
|
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: minitest
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '5.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '5.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: yinx
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 0.1.0
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 0.1.0
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: yinx_sql
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 0.1.2
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 0.1.2
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: my_chart
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 0.1.0
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 0.1.0
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: time_seq
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 0.1.0
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 0.1.0
|
111
|
+
description:
|
112
|
+
email:
|
113
|
+
- block24block@gmail.com
|
114
|
+
executables: []
|
115
|
+
extensions: []
|
116
|
+
extra_rdoc_files: []
|
117
|
+
files:
|
118
|
+
- ".gitignore"
|
119
|
+
- ".travis.yml"
|
120
|
+
- CODE_OF_CONDUCT.md
|
121
|
+
- Gemfile
|
122
|
+
- LICENSE.txt
|
123
|
+
- README.md
|
124
|
+
- Rakefile
|
125
|
+
- bin/console
|
126
|
+
- bin/setup
|
127
|
+
- lib/yinx_st.rb
|
128
|
+
- lib/yinx_st/batches.rb
|
129
|
+
- lib/yinx_st/chart.erb
|
130
|
+
- lib/yinx_st/note_meta.rb
|
131
|
+
- lib/yinx_st/version.rb
|
132
|
+
- yinx_st.gemspec
|
133
|
+
homepage: https://github.com/turnon/yinx_st
|
134
|
+
licenses:
|
135
|
+
- MIT
|
136
|
+
metadata: {}
|
137
|
+
post_install_message:
|
138
|
+
rdoc_options: []
|
139
|
+
require_paths:
|
140
|
+
- lib
|
141
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - ">="
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '0'
|
146
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
147
|
+
requirements:
|
148
|
+
- - ">="
|
149
|
+
- !ruby/object:Gem::Version
|
150
|
+
version: '0'
|
151
|
+
requirements: []
|
152
|
+
rubyforge_project:
|
153
|
+
rubygems_version: 2.6.8
|
154
|
+
signing_key:
|
155
|
+
specification_version: 4
|
156
|
+
summary: Statistics for yinx_sql
|
157
|
+
test_files: []
|