leela_client 0.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +4 -0
- data/Rakefile +2 -0
- data/leela_client.gemspec +16 -0
- data/lib/leela_client/version.rb +3 -0
- data/lib/leela_client.rb +5 -0
- metadata +52 -0
data/Gemfile
ADDED
data/Rakefile
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
require File.expand_path('../lib/leela_client/version', __FILE__)
|
3
|
+
|
4
|
+
Gem::Specification.new do |gem|
|
5
|
+
gem.authors = ["PotHix", "ncode"]
|
6
|
+
gem.email = ["pothix@pothix.com", "juliano.martinez@gmail.com"]
|
7
|
+
gem.description = %q{A client for leela chart server}
|
8
|
+
gem.summary = gem.description
|
9
|
+
gem.homepage = "https://github.com/ncode/leela"
|
10
|
+
|
11
|
+
gem.files = Dir["./**/*"].reject {|file| file =~ /\.git|pkg/}
|
12
|
+
gem.require_paths = ["lib"]
|
13
|
+
|
14
|
+
gem.name = "leela_client"
|
15
|
+
gem.version = LeelaClient::VERSION
|
16
|
+
end
|
data/lib/leela_client.rb
ADDED
metadata
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: leela_client
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.0
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- PotHix
|
9
|
+
- ncode
|
10
|
+
autorequire:
|
11
|
+
bindir: bin
|
12
|
+
cert_chain: []
|
13
|
+
date: 2012-03-26 00:00:00.000000000 Z
|
14
|
+
dependencies: []
|
15
|
+
description: A client for leela chart server
|
16
|
+
email:
|
17
|
+
- pothix@pothix.com
|
18
|
+
- juliano.martinez@gmail.com
|
19
|
+
executables: []
|
20
|
+
extensions: []
|
21
|
+
extra_rdoc_files: []
|
22
|
+
files:
|
23
|
+
- ./leela_client.gemspec
|
24
|
+
- ./Gemfile
|
25
|
+
- ./Rakefile
|
26
|
+
- ./lib/leela_client/version.rb
|
27
|
+
- ./lib/leela_client.rb
|
28
|
+
homepage: https://github.com/ncode/leela
|
29
|
+
licenses: []
|
30
|
+
post_install_message:
|
31
|
+
rdoc_options: []
|
32
|
+
require_paths:
|
33
|
+
- lib
|
34
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
35
|
+
none: false
|
36
|
+
requirements:
|
37
|
+
- - ! '>='
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '0'
|
40
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
46
|
+
requirements: []
|
47
|
+
rubyforge_project:
|
48
|
+
rubygems_version: 1.8.16
|
49
|
+
signing_key:
|
50
|
+
specification_version: 3
|
51
|
+
summary: A client for leela chart server
|
52
|
+
test_files: []
|