kic 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +46 -0
- data/.rubocop.yml +93 -0
- data/README.textile +0 -0
- data/Rakefile +13 -0
- data/VERSION +1 -0
- data/bin/kic +0 -0
- data/kic.gemspec +20 -0
- data/lib/kic.rb +0 -0
- data/spec/kic/kic_spec.rb +0 -0
- data/spec/spec_helper.rb +0 -0
- metadata +71 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 8a9e5c06130161bcb09031fb4b09c1b2509bbecb
|
4
|
+
data.tar.gz: 81477b14737b3fdb2ba7898c2234a49653565106
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 933a8a4b56723492dc5c86f61f0f4679fafcfa52178d1ed4b22361185a6e0041fa5baa11a3a3b5204554c7ad93d819d0f6f2701bfa7a930dfed76ddcdb3e546c
|
7
|
+
data.tar.gz: 3c40db34396783b7b1edb2fd93a31958aa88e34c482b1f28cf34e04877550735a6f8417d861eb1bfcd19a30157de8324b57937eaac495eeed4b35173baf26b90
|
data/.gitignore
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
# For Mac
|
2
|
+
.DS_Store
|
3
|
+
|
4
|
+
|
5
|
+
# vim backup file
|
6
|
+
*.swp
|
7
|
+
|
8
|
+
|
9
|
+
# ci
|
10
|
+
coverage
|
11
|
+
spec/reports
|
12
|
+
|
13
|
+
|
14
|
+
# Rubymine
|
15
|
+
.idea/*
|
16
|
+
|
17
|
+
|
18
|
+
# Ignore local config
|
19
|
+
config/database.yml
|
20
|
+
config/settings.local.yml
|
21
|
+
config/settings/*.local.yml
|
22
|
+
config/environments/*.local.yml
|
23
|
+
|
24
|
+
|
25
|
+
# Ignore bundler config.
|
26
|
+
/.bundle
|
27
|
+
/vendor/bundle
|
28
|
+
|
29
|
+
|
30
|
+
# Ignore the default SQLite database.
|
31
|
+
/db/*.sqlite3
|
32
|
+
/db/*.sqlite3-journal
|
33
|
+
|
34
|
+
|
35
|
+
# Auto-generate SQL File
|
36
|
+
/db/structure.sql
|
37
|
+
|
38
|
+
|
39
|
+
# Ignore all logfiles and tempfiles.
|
40
|
+
/log/*.log
|
41
|
+
/tmp
|
42
|
+
|
43
|
+
# E-R Diagram
|
44
|
+
erd.pdf
|
45
|
+
erd.dot
|
46
|
+
|
data/.rubocop.yml
ADDED
@@ -0,0 +1,93 @@
|
|
1
|
+
# This file overrides https://github.com/bbatsov/rubocop/blob/master/config/default.yml
|
2
|
+
|
3
|
+
AllCops:
|
4
|
+
Includes:
|
5
|
+
- Rakefile
|
6
|
+
- config.ru
|
7
|
+
- lib/tasks/*.rake
|
8
|
+
Excludes:
|
9
|
+
- coverage/**
|
10
|
+
- vendor/**
|
11
|
+
- log/**
|
12
|
+
- tmp/**
|
13
|
+
- db/schema.rb
|
14
|
+
|
15
|
+
# Limit lines to 80 characters.
|
16
|
+
LineLength:
|
17
|
+
Enabled: false
|
18
|
+
|
19
|
+
# Avoid methods longer than 10 lines of code
|
20
|
+
MethodLength:
|
21
|
+
Enabled: false
|
22
|
+
|
23
|
+
ClassLength:
|
24
|
+
Enabled: false
|
25
|
+
|
26
|
+
# Favor modifier if/unless usage when you have a single-line body.
|
27
|
+
IfUnlessModifier:
|
28
|
+
Enabled: false
|
29
|
+
|
30
|
+
# Favor modifier while/until usage when you have a single-line body.
|
31
|
+
WhileUntilModifier:
|
32
|
+
Enabled: false
|
33
|
+
|
34
|
+
# Preferred collection methods.
|
35
|
+
CollectionMethods:
|
36
|
+
Enabled: false
|
37
|
+
|
38
|
+
# Don't interpolate global, instance and class variables directly in strings.
|
39
|
+
VariableInterpolation:
|
40
|
+
Enabled: false
|
41
|
+
|
42
|
+
# Use only ascii symbols in comments.
|
43
|
+
AsciiComments:
|
44
|
+
Enabled: false
|
45
|
+
|
46
|
+
CaseEquality:
|
47
|
+
Description: 'Avoid explicit use of the case equality operator(===).'
|
48
|
+
Enabled: false
|
49
|
+
|
50
|
+
SignalException:
|
51
|
+
Description: 'Checks for proper usage of fail and raise.'
|
52
|
+
Enabled: false
|
53
|
+
|
54
|
+
SymbolArray:
|
55
|
+
Description: 'Use %i or %I for arrays of symbols.'
|
56
|
+
Enabled: true
|
57
|
+
|
58
|
+
CyclomaticComplexity:
|
59
|
+
Max: 20
|
60
|
+
|
61
|
+
Documentation:
|
62
|
+
Description: 'Document classes and non-namespace modules.'
|
63
|
+
Enabled: false
|
64
|
+
|
65
|
+
TrivialAccessors:
|
66
|
+
Enabled: false
|
67
|
+
|
68
|
+
# 本来はtrueにしたいが変更範囲が大きすぎるため、一時的にfalse
|
69
|
+
AccessModifierIndentation:
|
70
|
+
Enabled: false
|
71
|
+
|
72
|
+
PerlBackrefs:
|
73
|
+
Enabled: false
|
74
|
+
|
75
|
+
SingleLineBlockParams:
|
76
|
+
Description: 'Enforces the names of some block params.'
|
77
|
+
Enabled: false
|
78
|
+
|
79
|
+
ClassAndModuleChildren:
|
80
|
+
Enabled: false
|
81
|
+
|
82
|
+
FileName:
|
83
|
+
Enabled: false
|
84
|
+
|
85
|
+
RegexpLiteral:
|
86
|
+
Enabled: false
|
87
|
+
|
88
|
+
AlignArray:
|
89
|
+
Enabled: false
|
90
|
+
|
91
|
+
# 一時的に封鎖
|
92
|
+
AccessorMethodName:
|
93
|
+
Enabled: false
|
data/README.textile
ADDED
File without changes
|
data/Rakefile
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
#!/usr/bin/env rake
|
2
|
+
require "bundler/gem_tasks"
|
3
|
+
|
4
|
+
task :test do
|
5
|
+
require 'rspec/core'
|
6
|
+
require 'rspec/core/rake_task'
|
7
|
+
RSpec::Core::RakeTask.new(:test) do |spec|
|
8
|
+
spec.pattern = FileList['spec/**/*_spec.rb']
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
task :spec => :test
|
13
|
+
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.0.1
|
data/bin/kic
ADDED
File without changes
|
data/kic.gemspec
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
|
4
|
+
Gem::Specification.new do |gem|
|
5
|
+
gem.name = "kic"
|
6
|
+
gem.version = File.read("VERSION").strip
|
7
|
+
gem.authors = ["Yuichi UEMURA"]
|
8
|
+
gem.email = ["yuichi.u@gmail.com"]
|
9
|
+
gem.homepage = "https://github.com/u-ichi/kic"
|
10
|
+
gem.summary = %q{Kick QueryAPI}
|
11
|
+
gem.description = %q{Kick QueryAPI}
|
12
|
+
|
13
|
+
gem.files = `git ls-files`.split("\n")
|
14
|
+
gem.test_files = `git ls-files -- {spec,features}/*`.split("\n")
|
15
|
+
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
16
|
+
gem.require_paths = ["lib"]
|
17
|
+
|
18
|
+
gem.add_development_dependency "rake"
|
19
|
+
end
|
20
|
+
|
data/lib/kic.rb
ADDED
File without changes
|
File without changes
|
data/spec/spec_helper.rb
ADDED
File without changes
|
metadata
ADDED
@@ -0,0 +1,71 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: kic
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Yuichi UEMURA
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-06-12 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rake
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
description: Kick QueryAPI
|
28
|
+
email:
|
29
|
+
- yuichi.u@gmail.com
|
30
|
+
executables:
|
31
|
+
- kic
|
32
|
+
extensions: []
|
33
|
+
extra_rdoc_files: []
|
34
|
+
files:
|
35
|
+
- ".gitignore"
|
36
|
+
- ".rubocop.yml"
|
37
|
+
- README.textile
|
38
|
+
- Rakefile
|
39
|
+
- VERSION
|
40
|
+
- bin/kic
|
41
|
+
- kic.gemspec
|
42
|
+
- lib/kic.rb
|
43
|
+
- spec/kic/kic_spec.rb
|
44
|
+
- spec/spec_helper.rb
|
45
|
+
homepage: https://github.com/u-ichi/kic
|
46
|
+
licenses: []
|
47
|
+
metadata: {}
|
48
|
+
post_install_message:
|
49
|
+
rdoc_options: []
|
50
|
+
require_paths:
|
51
|
+
- lib
|
52
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
53
|
+
requirements:
|
54
|
+
- - ">="
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: '0'
|
57
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
requirements: []
|
63
|
+
rubyforge_project:
|
64
|
+
rubygems_version: 2.2.2
|
65
|
+
signing_key:
|
66
|
+
specification_version: 4
|
67
|
+
summary: Kick QueryAPI
|
68
|
+
test_files:
|
69
|
+
- spec/kic/kic_spec.rb
|
70
|
+
- spec/spec_helper.rb
|
71
|
+
has_rdoc:
|