horu 0.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +20 -0
- data/README.markdown +4 -0
- data/Rakefile +37 -0
- data/bin/horu +11 -0
- data/horu.gemspec +26 -0
- data/lib/horu.rb +6 -0
- metadata +53 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: dc7961d9f1284d08ef147cd393d2bd3c71f7dcf8
|
4
|
+
data.tar.gz: 096da5190c30921a8de0e870017047b870e89c8b
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 722d5c3965de38d91279b475d5058a8f12431cb085c3753e51840ef8ea0d1710cf8bd4c45524042dc62d91588a8a1d63d59d96e0f8a2d15c500ec79b79209bac
|
7
|
+
data.tar.gz: 9abb7640a197a00862bc705d0550b6f15edb740e7c36c82650645ac78aaab86325aa230c127b2d5ba3cba56ff431e26893c0ed6b0033c0b1ce09021677d4c7ce
|
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2014 Jacob Hammack
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
6
|
+
this software and associated documentation files (the "Software"), to deal in
|
7
|
+
the Software without restriction, including without limitation the rights to
|
8
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
9
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
10
|
+
subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
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, FITNESS
|
17
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
18
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
19
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
20
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.markdown
ADDED
data/Rakefile
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
|
2
|
+
|
3
|
+
require "horu"
|
4
|
+
require 'rake'
|
5
|
+
require 'rake/testtask'
|
6
|
+
|
7
|
+
task :build do
|
8
|
+
system "gem build #{Horu::APP_NAME}.gemspec"
|
9
|
+
end
|
10
|
+
|
11
|
+
task :tag_and_bag do
|
12
|
+
system "git tag -a v#{Horu::VERSION} -m 'version #{Horu::VERSION}'"
|
13
|
+
system "git push --tags"
|
14
|
+
system "git checkout master"
|
15
|
+
system "git merge #{Horu::VERSION}"
|
16
|
+
system "git push"
|
17
|
+
end
|
18
|
+
|
19
|
+
task :release => [:tag_and_bag, :build] do
|
20
|
+
system "gem push #{Horu::APP_NAME}-#{Horu::VERSION}.gem"
|
21
|
+
puts "Just released #{Horu::APP_NAME} v#{Horu::VERSION}. #{Horu::APP_NAME} is an library for interacting with CGMiner"
|
22
|
+
end
|
23
|
+
|
24
|
+
task :clean do
|
25
|
+
system "rm *.gem"
|
26
|
+
system "rm *.db"
|
27
|
+
system "rm *.cfg"
|
28
|
+
system "rm *.pdf"
|
29
|
+
system "rm -rf coverage"
|
30
|
+
end
|
31
|
+
|
32
|
+
task :merge do
|
33
|
+
system "git checkout master"
|
34
|
+
system "git merge #{Horu::VERSION}"
|
35
|
+
system "git push"
|
36
|
+
end
|
37
|
+
|
data/bin/horu
ADDED
data/horu.gemspec
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
base = __FILE__
|
2
|
+
$:.unshift(File.join(File.dirname(base), 'lib'))
|
3
|
+
|
4
|
+
require 'horu'
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = "#{Horu::APP_NAME}"
|
8
|
+
s.version = Horu::VERSION
|
9
|
+
s.homepage = "http://www.hammackj.com/projects/horu"
|
10
|
+
s.summary = "#{Horu::APP_NAME}"
|
11
|
+
s.description = "#{Horu::APP_NAME} is library for interacting with CGMiner"
|
12
|
+
s.license = "MIT"
|
13
|
+
|
14
|
+
s.author = "Jacob Hammack"
|
15
|
+
s.email = "jacob.hammack@hammackj.com"
|
16
|
+
|
17
|
+
s.files = Dir['[A-Z]*'] + Dir['lib/**/*'] + ['horu.gemspec']
|
18
|
+
s.bindir = "bin"
|
19
|
+
s.executables = "#{Horu::APP_NAME}"
|
20
|
+
s.require_paths = ["lib"]
|
21
|
+
s.has_rdoc = 'yard'
|
22
|
+
s.extra_rdoc_files = ["README.markdown", "LICENSE"]
|
23
|
+
|
24
|
+
s.required_rubygems_version = ">= 1.8.24"
|
25
|
+
s.rubyforge_project = "#{Horu::APP_NAME}"
|
26
|
+
end
|
data/lib/horu.rb
ADDED
metadata
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: horu
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Jacob Hammack
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-01-04 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: horu is library for interacting with CGMiner
|
14
|
+
email: jacob.hammack@hammackj.com
|
15
|
+
executables:
|
16
|
+
- horu
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files:
|
19
|
+
- README.markdown
|
20
|
+
- LICENSE
|
21
|
+
files:
|
22
|
+
- Rakefile
|
23
|
+
- README.markdown
|
24
|
+
- LICENSE
|
25
|
+
- lib/horu.rb
|
26
|
+
- horu.gemspec
|
27
|
+
- bin/horu
|
28
|
+
homepage: http://www.hammackj.com/projects/horu
|
29
|
+
licenses:
|
30
|
+
- MIT
|
31
|
+
metadata: {}
|
32
|
+
post_install_message:
|
33
|
+
rdoc_options: []
|
34
|
+
require_paths:
|
35
|
+
- lib
|
36
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
42
|
+
requirements:
|
43
|
+
- - '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: 1.8.24
|
46
|
+
requirements: []
|
47
|
+
rubyforge_project: horu
|
48
|
+
rubygems_version: 2.0.3
|
49
|
+
signing_key:
|
50
|
+
specification_version: 4
|
51
|
+
summary: horu
|
52
|
+
test_files: []
|
53
|
+
has_rdoc: yard
|