sixcore 0.4.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +2 -1
- data/lib/sixcore.rb +2 -1
- metadata +12 -3
data/Rakefile
CHANGED
@@ -13,7 +13,7 @@ require 'rake/testtask'
|
|
13
13
|
spec = Gem::Specification.new do |s|
|
14
14
|
s.name = 'sixcore'
|
15
15
|
s.rubyforge_project = s.name
|
16
|
-
s.version = '0.4.
|
16
|
+
s.version = '0.4.1'
|
17
17
|
s.has_rdoc = true
|
18
18
|
s.extra_rdoc_files = ['README', 'LICENSE']
|
19
19
|
s.summary = 'Basic Function Library for other six projects'
|
@@ -25,6 +25,7 @@ spec = Gem::Specification.new do |s|
|
|
25
25
|
s.files = %w(LICENSE README Rakefile) + Dir.glob("{bin,lib,spec}/**/*.rb") + Dir.glob("{bin,lib,spec}/**/*.yaml")
|
26
26
|
s.require_path = 'lib'
|
27
27
|
s.bindir = 'bin'
|
28
|
+
s.add_dependency('log4r', '>= 1.0.0')
|
28
29
|
end
|
29
30
|
|
30
31
|
Rake::GemPackageTask.new(spec) do |p|
|
data/lib/sixcore.rb
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
6thSense.eu Core Module, by Sickboy (sb_at_6thSense.eu)
|
3
3
|
=end
|
4
4
|
require 'FileUtils'
|
5
|
+
require 'rubygems'
|
5
6
|
gem 'log4r'
|
6
7
|
require 'log4r'
|
7
8
|
|
@@ -10,7 +11,7 @@ module SixCore
|
|
10
11
|
MAINDIR = Dir.pwd
|
11
12
|
COMPONENT = 'SixCore'
|
12
13
|
TITLE = '6thSense.eu Core'
|
13
|
-
VERSION = '0.4.
|
14
|
+
VERSION = '0.4.1'
|
14
15
|
ConfigCore = Struct.new(:info, :debug, :log, :verbose)
|
15
16
|
|
16
17
|
module_function
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sixcore
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sickboy
|
@@ -11,8 +11,17 @@ cert_chain: []
|
|
11
11
|
|
12
12
|
date: 2008-12-02 00:00:00 +01:00
|
13
13
|
default_executable:
|
14
|
-
dependencies:
|
15
|
-
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: log4r
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 1.0.0
|
24
|
+
version:
|
16
25
|
description: The library is primaraily designed for sixarma and sixarma-bt projects, to supply a basic set of core functions that can be used throughout the other (and future) six*** projects
|
17
26
|
email: sb@6thsense.eu
|
18
27
|
executables: []
|