gom-core 0.2.4 → 0.2.5

Sign up to get free protection for your applications and to get access to all the features.
data/.travis.yml ADDED
@@ -0,0 +1,12 @@
1
+ language: ruby
2
+ bundler_args: --without debug
3
+ before_script:
4
+ script: "bundle exec rspec"
5
+ rvm:
6
+ - 1.9.3
7
+ - 2.0.0
8
+ gemfile:
9
+ - Gemfile
10
+ notifications:
11
+ recipients:
12
+ - dirk.luesebrink@artcom.com
data/Guardfile CHANGED
@@ -1,6 +1,3 @@
1
- # A sample Guardfile
2
- # More info at https://github.com/guard/guard#readme
3
-
4
1
  guard :rspec, :cli => '--format nested --debug --color' do
5
2
  watch(%r{^spec/.+_spec\.rb$})
6
3
  watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2009 dirk luesebrink
1
+ Copyright (c) 2009/13 art+com/dirk luesebrink
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
@@ -1,8 +1,10 @@
1
- = gom-core
1
+ # GOM Core
2
2
 
3
- Description goes here.
3
+ Base functionallity to be shared between GOM server and client
4
+ implementations. Currently includes primitive type handling and logger setup
5
+ with decent output format.
4
6
 
5
- == Note on Patches/Pull Requests
7
+ ## Note on Patches/Pull Requests
6
8
 
7
9
  * Fork the project.
8
10
  * Make your feature addition or bug fix.
@@ -13,6 +15,6 @@ Description goes here.
13
15
  bump version in a commit by itself I can ignore when I pull)
14
16
  * Send me a pull request. Bonus points for topic branches.
15
17
 
16
- == Copyright
18
+ ## Copyright
17
19
 
18
- Copyright (c) 2009 dirk luesebrink. See LICENSE for details.
20
+ Copyright (c) 2009/13 art+com/dirk luesebrink. See LICENSE for details.
data/Rakefile CHANGED
@@ -1,54 +1,2 @@
1
1
  require 'bundler'
2
2
  Bundler::GemHelper.install_tasks
3
-
4
- __END__
5
-
6
- require 'rubygems'
7
- require 'rake'
8
-
9
- begin
10
- require 'jeweler'
11
- Jeweler::Tasks.new do |gem|
12
- gem.name = "gom-core"
13
- gem.summary = %Q{basic GOM functionallity}
14
- gem.description = %Q{this gem includes stuff which is of use for the server as well as for gom scripting clients}
15
- gem.email = "dirk.luesebrink@gmail.com"
16
- gem.homepage = "http://github.com/crux/gom-core"
17
- gem.authors = ["art+com/dirk luesebrink"]
18
- gem.add_development_dependency "rspec"
19
- # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
20
- end
21
- Jeweler::GemcutterTasks.new
22
- rescue LoadError
23
- puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
24
- end
25
-
26
- require 'spec/rake/spectask'
27
- Spec::Rake::SpecTask.new(:spec) do |spec|
28
- spec.libs << 'lib' << 'spec'
29
- spec.spec_files = FileList['spec/**/*_spec.rb']
30
- end
31
-
32
- Spec::Rake::SpecTask.new(:rcov) do |spec|
33
- spec.libs << 'lib' << 'spec'
34
- spec.pattern = 'spec/**/*_spec.rb'
35
- spec.rcov = true
36
- end
37
-
38
- task :spec => :check_dependencies
39
-
40
- task :default => :spec
41
-
42
- require 'rake/rdoctask'
43
- Rake::RDocTask.new do |rdoc|
44
- if File.exist?('VERSION')
45
- version = File.read('VERSION')
46
- else
47
- version = ""
48
- end
49
-
50
- rdoc.rdoc_dir = 'rdoc'
51
- rdoc.title = "gom-core #{version}"
52
- rdoc.rdoc_files.include('README*')
53
- rdoc.rdoc_files.include('lib/**/*.rb')
54
- end
@@ -1,5 +1,5 @@
1
1
  module Gom
2
2
  module Core
3
- VERSION = '0.2.4'
3
+ VERSION = '0.2.5'
4
4
  end
5
5
  end
@@ -1,4 +1,4 @@
1
- require File.dirname(__FILE__)+'/../../spec_helper'
1
+ require 'spec_helper'
2
2
 
3
3
  include Gom::Core
4
4
 
@@ -1,4 +1,5 @@
1
1
  require 'spec_helper'
2
+ require 'tempfile'
2
3
 
3
4
  describe Gom::Logger do
4
5
  it "should find the class" do
metadata CHANGED
@@ -1,100 +1,97 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gom-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.2.5
5
+ prerelease:
5
6
  platform: ruby
6
7
  authors:
7
8
  - art+com/dirk luesebrink
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
- date: 2013-08-19 00:00:00.000000000 Z
12
+ date: 2013-08-20 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
15
  name: rspec
15
16
  requirement: !ruby/object:Gem::Requirement
17
+ none: false
16
18
  requirements:
17
- - - '>='
19
+ - - ! '>='
18
20
  - !ruby/object:Gem::Version
19
21
  version: '0'
20
22
  type: :development
21
23
  prerelease: false
22
24
  version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
23
26
  requirements:
24
- - - '>='
27
+ - - ! '>='
25
28
  - !ruby/object:Gem::Version
26
29
  version: '0'
27
30
  - !ruby/object:Gem::Dependency
28
31
  name: rspec-mocks
29
32
  requirement: !ruby/object:Gem::Requirement
33
+ none: false
30
34
  requirements:
31
- - - '>='
35
+ - - ! '>='
32
36
  - !ruby/object:Gem::Version
33
37
  version: '0'
34
38
  type: :development
35
39
  prerelease: false
36
40
  version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
37
42
  requirements:
38
- - - '>='
43
+ - - ! '>='
39
44
  - !ruby/object:Gem::Version
40
45
  version: '0'
41
46
  - !ruby/object:Gem::Dependency
42
47
  name: guard
43
48
  requirement: !ruby/object:Gem::Requirement
49
+ none: false
44
50
  requirements:
45
- - - '>='
51
+ - - ! '>='
46
52
  - !ruby/object:Gem::Version
47
53
  version: '0'
48
54
  type: :development
49
55
  prerelease: false
50
56
  version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
51
58
  requirements:
52
- - - '>='
59
+ - - ! '>='
53
60
  - !ruby/object:Gem::Version
54
61
  version: '0'
55
62
  - !ruby/object:Gem::Dependency
56
63
  name: guard-rspec
57
64
  requirement: !ruby/object:Gem::Requirement
65
+ none: false
58
66
  requirements:
59
- - - '>='
67
+ - - ! '>='
60
68
  - !ruby/object:Gem::Version
61
69
  version: '0'
62
70
  type: :development
63
71
  prerelease: false
64
72
  version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
65
74
  requirements:
66
- - - '>='
67
- - !ruby/object:Gem::Version
68
- version: '0'
69
- - !ruby/object:Gem::Dependency
70
- name: growl
71
- requirement: !ruby/object:Gem::Requirement
72
- requirements:
73
- - - '>='
74
- - !ruby/object:Gem::Version
75
- version: '0'
76
- type: :development
77
- prerelease: false
78
- version_requirements: !ruby/object:Gem::Requirement
79
- requirements:
80
- - - '>='
75
+ - - ! '>='
81
76
  - !ruby/object:Gem::Version
82
77
  version: '0'
83
78
  - !ruby/object:Gem::Dependency
84
79
  name: debugger
85
80
  requirement: !ruby/object:Gem::Requirement
81
+ none: false
86
82
  requirements:
87
- - - '>='
83
+ - - ! '>='
88
84
  - !ruby/object:Gem::Version
89
85
  version: '0'
90
86
  type: :development
91
87
  prerelease: false
92
88
  version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
93
90
  requirements:
94
- - - '>='
91
+ - - ! '>='
95
92
  - !ruby/object:Gem::Version
96
93
  version: '0'
97
- description: "\n this gem includes stuff which is of use for the server as well
94
+ description: ! "\n this gem includes stuff which is of use for the server as well
98
95
  as for gom\n scripting clients\n "
99
96
  email:
100
97
  - dirk.luesebrink@artcom.de
@@ -102,48 +99,73 @@ executables: []
102
99
  extensions: []
103
100
  extra_rdoc_files: []
104
101
  files:
105
- - .document
106
- - .gitignore
107
- - Gemfile
108
- - Guardfile
109
- - LICENSE
110
- - README.rdoc
111
- - Rakefile
112
- - gom-core.gemspec
113
- - lib/gom-core.rb
114
- - lib/gom/core.rb
115
- - lib/gom/core/primitive.rb
116
- - lib/gom/core/version.rb
117
- - lib/gom/logger.rb
118
- - spec/gom/core/primitive_spec.rb
119
- - spec/gom/logger_spec.rb
120
- - spec/spec.opts
121
- - spec/spec_helper.rb
122
- homepage: http://github.com/crux/gom-core
102
+ - !binary |-
103
+ LmRvY3VtZW50
104
+ - !binary |-
105
+ LmdpdGlnbm9yZQ==
106
+ - !binary |-
107
+ LnRyYXZpcy55bWw=
108
+ - !binary |-
109
+ R2VtZmlsZQ==
110
+ - !binary |-
111
+ R3VhcmRmaWxl
112
+ - !binary |-
113
+ TElDRU5TRQ==
114
+ - !binary |-
115
+ UkVBRE1FLm1k
116
+ - !binary |-
117
+ UmFrZWZpbGU=
118
+ - !binary |-
119
+ Z29tLWNvcmUuZ2Vtc3BlYw==
120
+ - !binary |-
121
+ bGliL2dvbS1jb3JlLnJi
122
+ - !binary |-
123
+ bGliL2dvbS9jb3JlLnJi
124
+ - !binary |-
125
+ bGliL2dvbS9jb3JlL3ByaW1pdGl2ZS5yYg==
126
+ - !binary |-
127
+ bGliL2dvbS9jb3JlL3ZlcnNpb24ucmI=
128
+ - !binary |-
129
+ bGliL2dvbS9sb2dnZXIucmI=
130
+ - !binary |-
131
+ c3BlYy9nb20vY29yZS9wcmltaXRpdmVfc3BlYy5yYg==
132
+ - !binary |-
133
+ c3BlYy9nb20vbG9nZ2VyX3NwZWMucmI=
134
+ - !binary |-
135
+ c3BlYy9zcGVjLm9wdHM=
136
+ - !binary |-
137
+ c3BlYy9zcGVjX2hlbHBlci5yYg==
138
+ homepage: http://github.com/artcom/gom-core
123
139
  licenses: []
124
- metadata: {}
125
140
  post_install_message:
126
141
  rdoc_options: []
127
142
  require_paths:
128
143
  - lib
129
144
  required_ruby_version: !ruby/object:Gem::Requirement
145
+ none: false
130
146
  requirements:
131
- - - '>='
147
+ - - ! '>='
132
148
  - !ruby/object:Gem::Version
133
149
  version: '0'
134
150
  required_rubygems_version: !ruby/object:Gem::Requirement
151
+ none: false
135
152
  requirements:
136
- - - '>='
153
+ - - ! '>='
137
154
  - !ruby/object:Gem::Version
138
155
  version: '0'
139
156
  requirements: []
140
157
  rubyforge_project:
141
- rubygems_version: 2.0.6
158
+ rubygems_version: 1.8.25
142
159
  signing_key:
143
- specification_version: 4
160
+ specification_version: 3
144
161
  summary: basic GOM functionallity
145
162
  test_files:
146
- - spec/gom/core/primitive_spec.rb
147
- - spec/gom/logger_spec.rb
148
- - spec/spec.opts
149
- - spec/spec_helper.rb
163
+ - !binary |-
164
+ c3BlYy9nb20vY29yZS9wcmltaXRpdmVfc3BlYy5yYg==
165
+ - !binary |-
166
+ c3BlYy9nb20vbG9nZ2VyX3NwZWMucmI=
167
+ - !binary |-
168
+ c3BlYy9zcGVjLm9wdHM=
169
+ - !binary |-
170
+ c3BlYy9zcGVjX2hlbHBlci5yYg==
171
+ has_rdoc:
checksums.yaml DELETED
@@ -1,7 +0,0 @@
1
- ---
2
- SHA1:
3
- metadata.gz: 3503613a1e9cbdc624dffd41c334a5f6a5492637
4
- data.tar.gz: 4115126bda5189cb619cb6e14d5bf77e84453fdf
5
- SHA512:
6
- metadata.gz: 36dc37eaa8096ac766c988b5f8629672dd9d90b19a837a8172dcb9dafb6f180bf854f8fe1bc4130922f25aafe55f04210fafb92f9a5313240287ea85c2bb7673
7
- data.tar.gz: c95e4c2a4da9fe98b42a2937c0bf442293376d39d9b49b0de941aa1040047358b42524dfa311482ec58553a9d214bda42f135e0fc76c079d3e3a99327f336314