gom-core 0.1.1 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +5 -2
- data/Gemfile +16 -0
- data/Rakefile +5 -0
- data/lib/gom-core.rb +1 -1
- data/lib/gom/core.rb +3 -0
- data/lib/gom/core/version.rb +5 -0
- data/lib/gom/log.rb +0 -2
- data/spec/gom/logger_spec.rb +1 -1
- data/spec/spec_helper.rb +3 -3
- metadata +34 -48
- data/VERSION +0 -1
data/.gitignore
CHANGED
data/Gemfile
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
source :rubygems
|
2
|
+
|
3
|
+
# Specify your gem's dependencies in gom-core.gemspec
|
4
|
+
gemspec
|
5
|
+
|
6
|
+
# Bundle gems for the local environment. Make sure to
|
7
|
+
# put test-only gems in this group so their generators
|
8
|
+
# and rake tasks are available in development mode:
|
9
|
+
group :development, :test do
|
10
|
+
gem 'wirble'
|
11
|
+
gem 'rspec'
|
12
|
+
|
13
|
+
gem 'ruby-debug', :platforms => :mri_18
|
14
|
+
gem 'ruby-debug19', :platforms => :mri_19, :require => 'ruby-debug'
|
15
|
+
gem 'ruby-debug-base19', :platforms => :mri_19
|
16
|
+
end
|
data/Rakefile
CHANGED
data/lib/gom-core.rb
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
require 'gom/core'
|
2
|
-
|
2
|
+
|
data/lib/gom/core.rb
CHANGED
data/lib/gom/log.rb
CHANGED
data/spec/gom/logger_spec.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
2
2
|
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
3
|
-
require 'spec'
|
4
|
-
require 'spec/autorun'
|
3
|
+
#require 'spec'
|
4
|
+
#require 'spec/autorun'
|
5
5
|
|
6
6
|
require 'gom-core'
|
7
7
|
|
8
|
-
|
8
|
+
RSpec.configure do |config|
|
9
9
|
config.before :each do
|
10
10
|
end
|
11
11
|
|
metadata
CHANGED
@@ -1,81 +1,67 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: gom-core
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.2.0
|
5
|
+
prerelease:
|
5
6
|
platform: ruby
|
6
|
-
authors:
|
7
|
+
authors:
|
7
8
|
- art+com/dirk luesebrink
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
type: :development
|
18
|
-
version_requirement:
|
19
|
-
version_requirements: !ruby/object:Gem::Requirement
|
20
|
-
requirements:
|
21
|
-
- - ">="
|
22
|
-
- !ruby/object:Gem::Version
|
23
|
-
version: "0"
|
24
|
-
version:
|
25
|
-
description: this gem includes stuff which is of use for the server as well as for gom scripting clients
|
26
|
-
email: dirk.luesebrink@gmail.com
|
12
|
+
date: 2012-01-18 00:00:00.000000000Z
|
13
|
+
dependencies: []
|
14
|
+
description: ! "\n this gem includes stuff which is of use for the server as well
|
15
|
+
as for gom\n scripting clients\n "
|
16
|
+
email:
|
17
|
+
- dirk.luesebrink@artcom.de
|
27
18
|
executables: []
|
28
|
-
|
29
19
|
extensions: []
|
30
|
-
|
31
|
-
|
32
|
-
- LICENSE
|
33
|
-
- README.rdoc
|
34
|
-
files:
|
20
|
+
extra_rdoc_files: []
|
21
|
+
files:
|
35
22
|
- .document
|
36
23
|
- .gitignore
|
24
|
+
- Gemfile
|
37
25
|
- LICENSE
|
38
26
|
- README.rdoc
|
39
27
|
- Rakefile
|
40
|
-
-
|
28
|
+
- gom-core.gemspec
|
41
29
|
- lib/gom-core.rb
|
42
30
|
- lib/gom/core.rb
|
43
31
|
- lib/gom/core/primitive.rb
|
32
|
+
- lib/gom/core/version.rb
|
44
33
|
- lib/gom/log.rb
|
45
34
|
- lib/gom/logger.rb
|
46
35
|
- spec/gom/core/primitive_spec.rb
|
47
36
|
- spec/gom/logger_spec.rb
|
48
37
|
- spec/spec.opts
|
49
38
|
- spec/spec_helper.rb
|
50
|
-
has_rdoc: true
|
51
39
|
homepage: http://github.com/crux/gom-core
|
52
40
|
licenses: []
|
53
|
-
|
54
41
|
post_install_message:
|
55
|
-
rdoc_options:
|
56
|
-
|
57
|
-
require_paths:
|
42
|
+
rdoc_options: []
|
43
|
+
require_paths:
|
58
44
|
- lib
|
59
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
45
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
46
|
+
none: false
|
47
|
+
requirements:
|
48
|
+
- - ! '>='
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: '0'
|
51
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
52
|
+
none: false
|
53
|
+
requirements:
|
54
|
+
- - ! '>='
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: '0'
|
71
57
|
requirements: []
|
72
|
-
|
73
|
-
|
74
|
-
rubygems_version: 1.3.5
|
58
|
+
rubyforge_project: gom-core
|
59
|
+
rubygems_version: 1.8.6
|
75
60
|
signing_key:
|
76
61
|
specification_version: 3
|
77
62
|
summary: basic GOM functionallity
|
78
|
-
test_files:
|
63
|
+
test_files:
|
79
64
|
- spec/gom/core/primitive_spec.rb
|
80
65
|
- spec/gom/logger_spec.rb
|
66
|
+
- spec/spec.opts
|
81
67
|
- spec/spec_helper.rb
|
data/VERSION
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
0.1.1
|