coral 0.1.1 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (10) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +4 -5
  3. data/Gemfile.lock +187 -37
  4. data/LICENSE.txt +201 -674
  5. data/README.rdoc +38 -24
  6. data/Rakefile +21 -14
  7. data/VERSION +1 -1
  8. data/coral.gemspec +22 -24
  9. data/lib/coral.rb +17 -19
  10. metadata +139 -187
@@ -1,28 +1,42 @@
1
- = coral
2
-
3
- This gem is simply a meta package that installs and requires all other Coral
4
- gems. It is meant to provide an easy way to install the Coral system gems.
5
-
6
- Note: These libraries are still very early in development!
7
-
8
- == Contributing to coral
9
-
10
- * Check out the latest master to make sure the feature hasn't been implemented
11
- or the bug hasn't been fixed yet.
12
- * Check out the issue tracker to make sure someone already hasn't requested
13
- it and/or contributed it.
14
- * Fork the project.
15
- * Start a feature/bugfix branch.
16
- * Commit and push until you are happy with your contribution.
17
- * Make sure to add tests for it. This is important so I don't break it in a
18
- future version unintentionally.
19
- * Please try not to mess with the Rakefile, version, or history. If you want
20
- to have your own version, or is otherwise necessary, that is fine, but
21
- please isolate to its own commit so I can cherry-pick around it.
1
+ == coral
2
+
3
+ This gem is simply a meta package that installs and requires the CORL gem.
4
+
5
+ Note: CORL is still early in development!
6
+
7
+ DO NOT USE IN PRODUCTION YET!!
8
+
9
+
10
+ Now you get to hear the story of two names.
11
+
12
+ Short story first; We switched to the CORL name (github.com/coralnexus/corl).
13
+
14
+ If your interested in why:
15
+
16
+ The original name of the CORL project was Coral, and we were exited when we found
17
+ the Ruby gem name "coral" available. Our first versions of our CORL system were
18
+ named coral_core, coral_cloud, coral_vagrant, coral_plan, and many more were planned.
19
+ We created a meta gem (this one) to install a core combination of gems.
20
+
21
+ During the course of development we found another project that came before ours that
22
+ uses the name coral, so we decided to update our project name, so as to avoid conflicts.
23
+
24
+ For us Coral is more than a word, it is a concept that embodies dynamic ecosystems
25
+ supporting a rich variety of lifeforms. Coral are very interesting creatures and we
26
+ endeavor to create software that helps build dynamic ecosystems of digital creatures.
27
+
28
+ We decided to use an acronym that sounds like the word Coral because the acronym fit
29
+ with our desire to create something good for administration but also good for flexible
30
+ research, so we came to Cluster Orchestration and Research Library. We split the core
31
+ components out into a small concurrent plugin framework called Nucleon, upon which
32
+ CORL is built. All of our coral sub gems are integrated into these two.
33
+
34
+ This gem exists only as a installer for people who accidentally spell coral the right
35
+ way when trying to install the CORL system. Use the CORL gem instead.
22
36
 
23
37
  == Copyright
24
38
 
25
- Licensed under GPLv3. See LICENSE.txt for further details.
39
+ Licensed under Apache license, version 2. See LICENSE.txt for further details.
26
40
 
27
- Copyright (c) 2013 Adrian Webb <adrian.webb@coraltech.net>
28
- Coral Technology Group LLC
41
+ Copyright (c) 2013-2014 Adrian Webb <adrian.webb@coralnexus.com>
42
+ Coral Technology Group LLC
data/Rakefile CHANGED
@@ -27,18 +27,18 @@ end
27
27
  Jeweler::Tasks.new do |gem|
28
28
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
29
29
  gem.name = "coral"
30
- gem.homepage = "http://github.com/coraltech/ruby-coral"
30
+ gem.homepage = "http://github.com/coraltech/coral"
31
31
  gem.rubyforge_project = 'coral'
32
- gem.license = "GPLv3"
33
- gem.email = "adrian.webb@coraltech.net"
32
+ gem.license = "Apache License, Version 2.0"
33
+ gem.email = "adrian.webb@coralnexus.com"
34
34
  gem.authors = ["Adrian Webb"]
35
- gem.summary = %Q{Meta package that installs all other Coral gems}
35
+ gem.summary = %Q{Alternative gem name for the CORL system}
36
36
  gem.description = File.read('README.rdoc')
37
- gem.required_ruby_version = '>= 1.8.1'
38
- gem.has_rdoc = true
39
- gem.rdoc_options << '--title' << 'Coral Meta library' <<
37
+ gem.required_ruby_version = '>= 1.9.1'
38
+ gem.has_rdoc = false
39
+ gem.rdoc_options << '--title' << 'Coral Orchestration and Research Library (alias)' <<
40
40
  '--main' << 'README.rdoc' <<
41
- '--line-numbers'
41
+ '--line-numbers'
42
42
 
43
43
  # Dependencies defined in Gemfile
44
44
  end
@@ -50,7 +50,7 @@ Jeweler::RubygemsDotOrgTasks.new
50
50
 
51
51
  RSpec::Core::RakeTask.new(:spec, :tag) do |spec, task_args|
52
52
  options = []
53
- options << "--tag #{task_args[:tag]}" if task_args.is_a?(Array) && ! task_args[:tag].to_s.empty?
53
+ options << "--tag #{task_args[:tag]}" if task_args.is_a?(Array) && ! task_args[:tag].to_s.empty?
54
54
  spec.rspec_opts = options.join(' ')
55
55
  end
56
56
 
@@ -59,19 +59,26 @@ task :default => :spec
59
59
  #-------------------------------------------------------------------------------
60
60
  # Documentation
61
61
 
62
- version = Coral::Meta::VERSION
62
+ version = Coral.VERSION
63
63
  doc_title = "coral #{version}"
64
64
 
65
65
  Rake::RDocTask.new do |rdoc|
66
- rdoc.rdoc_dir = 'rdoc'
67
- rdoc.title = doc_title
68
- rdoc.rdoc_files.include('README*')
66
+ rdoc.rdoc_dir = File.join('rdoc', 'site', version)
67
+
68
+ rdoc.title = doc_title
69
+ rdoc.main = 'README.rdoc'
70
+
71
+ rdoc.options << '--line-numbers'
72
+ rdoc.options << '--all'
73
+ rdoc.options << '-w' << '2'
74
+
75
+ rdoc.rdoc_files.include('*.rdoc')
69
76
  rdoc.rdoc_files.include('lib/**/*.rb')
70
77
  end
71
78
 
72
79
  #---
73
80
 
74
81
  YARD::Rake::YardocTask.new do |ydoc|
75
- ydoc.files = [ 'README*', 'lib/**/*.rb' ]
82
+ ydoc.files = [ '*.rdoc', 'lib/**/*.rb' ]
76
83
  ydoc.options = [ "--output-dir yardoc", "--title '#{doc_title}'" ]
77
84
  end
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.1
1
+ 0.5.0
@@ -2,16 +2,18 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
+ # stub: coral 0.5.0 ruby lib
5
6
 
6
7
  Gem::Specification.new do |s|
7
8
  s.name = "coral"
8
- s.version = "0.1.1"
9
+ s.version = "0.5.0"
9
10
 
10
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
+ s.require_paths = ["lib"]
11
13
  s.authors = ["Adrian Webb"]
12
- s.date = "2013-02-08"
13
- s.description = "= coral\n\nThis gem is simply a meta package that installs and requires all other Coral\ngems. It is meant to provide an easy way to install the Coral system gems.\n\nNote: These libraries are still very early in development!\n\n== Contributing to coral\n \n* Check out the latest master to make sure the feature hasn't been implemented \n or the bug hasn't been fixed yet.\n* Check out the issue tracker to make sure someone already hasn't requested \n it and/or contributed it.\n* Fork the project.\n* Start a feature/bugfix branch.\n* Commit and push until you are happy with your contribution.\n* Make sure to add tests for it. This is important so I don't break it in a \n future version unintentionally.\n* Please try not to mess with the Rakefile, version, or history. If you want \n to have your own version, or is otherwise necessary, that is fine, but \n please isolate to its own commit so I can cherry-pick around it.\n\n== Copyright\n\nLicensed under GPLv3. See LICENSE.txt for further details.\n\nCopyright (c) 2013 Adrian Webb <adrian.webb@coraltech.net>\nCoral Technology Group LLC"
14
- s.email = "adrian.webb@coraltech.net"
14
+ s.date = "2014-08-25"
15
+ s.description = "== coral\n\nThis gem is simply a meta package that installs and requires the CORL gem.\n\nNote: CORL is still early in development!\n\nDO NOT USE IN PRODUCTION YET!!\n\n\nNow you get to hear the story of two names.\n\nShort story first; We switched to the CORL name (github.com/coralnexus/corl).\n\nIf your interested in why:\n\nThe original name of the CORL project was Coral, and we were exited when we found \nthe Ruby gem name \"coral\" available. Our first versions of our CORL system were\nnamed coral_core, coral_cloud, coral_vagrant, coral_plan, and many more were planned.\nWe created a meta gem (this one) to install a core combination of gems. \n\nDuring the course of development we found another project that came before ours that \nuses the name coral, so we decided to update our project name, so as to avoid conflicts.\n\nFor us Coral is more than a word, it is a concept that embodies dynamic ecosystems \nsupporting a rich variety of lifeforms. Coral are very interesting creatures and we\nendeavor to create software that helps build dynamic ecosystems of digital creatures.\n\nWe decided to use an acronym that sounds like the word Coral because the acronym fit\nwith our desire to create something good for administration but also good for flexible\nresearch, so we came to Cluster Orchestration and Research Library. We split the core\ncomponents out into a small concurrent plugin framework called Nucleon, upon which\nCORL is built. All of our coral sub gems are integrated into these two.\n\nThis gem exists only as a installer for people who accidentally spell coral the right\nway when trying to install the CORL system. Use the CORL gem instead.\n\n== Copyright\n\nLicensed under Apache license, version 2. See LICENSE.txt for further details.\n\nCopyright (c) 2013-2014 Adrian Webb <adrian.webb@coralnexus.com>\nCoral Technology Group LLC\n"
16
+ s.email = "adrian.webb@coralnexus.com"
15
17
  s.extra_rdoc_files = [
16
18
  "LICENSE.txt",
17
19
  "README.rdoc"
@@ -27,46 +29,42 @@ Gem::Specification.new do |s|
27
29
  "coral.gemspec",
28
30
  "lib/coral.rb"
29
31
  ]
30
- s.homepage = "http://github.com/coraltech/ruby-coral"
31
- s.licenses = ["GPLv3"]
32
- s.rdoc_options = ["--title", "Coral Meta library", "--main", "README.rdoc", "--line-numbers"]
33
- s.require_paths = ["lib"]
34
- s.required_ruby_version = Gem::Requirement.new(">= 1.8.1")
32
+ s.homepage = "http://github.com/coraltech/coral"
33
+ s.licenses = ["Apache License, Version 2.0"]
34
+ s.rdoc_options = ["--title", "Coral Orchestration and Research Library (alias)", "--main", "README.rdoc", "--line-numbers"]
35
+ s.required_ruby_version = Gem::Requirement.new(">= 1.9.1")
35
36
  s.rubyforge_project = "coral"
36
- s.rubygems_version = "1.8.15"
37
- s.summary = "Meta package that installs all other Coral gems"
37
+ s.rubygems_version = "2.2.2"
38
+ s.summary = "Alternative gem name for the CORL system"
38
39
 
39
40
  if s.respond_to? :specification_version then
40
- s.specification_version = 3
41
+ s.specification_version = 4
41
42
 
42
43
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
43
- s.add_runtime_dependency(%q<coral_cloud>, ["~> 0.1"])
44
- s.add_runtime_dependency(%q<coral_plan>, ["~> 0.1"])
45
- s.add_runtime_dependency(%q<coral_vagrant>, ["~> 0.1"])
44
+ s.add_runtime_dependency(%q<corl>, ["~> 0.5"])
46
45
  s.add_development_dependency(%q<bundler>, ["~> 1.2"])
47
- s.add_development_dependency(%q<jeweler>, ["~> 1.8"])
46
+ s.add_development_dependency(%q<jeweler>, ["~> 2.0"])
48
47
  s.add_development_dependency(%q<rspec>, ["~> 2.10"])
49
48
  s.add_development_dependency(%q<rdoc>, ["~> 3.12"])
50
49
  s.add_development_dependency(%q<yard>, ["~> 0.8"])
50
+ s.add_development_dependency(%q<vagrant>, [">= 1.5"])
51
51
  else
52
- s.add_dependency(%q<coral_cloud>, ["~> 0.1"])
53
- s.add_dependency(%q<coral_plan>, ["~> 0.1"])
54
- s.add_dependency(%q<coral_vagrant>, ["~> 0.1"])
52
+ s.add_dependency(%q<corl>, ["~> 0.5"])
55
53
  s.add_dependency(%q<bundler>, ["~> 1.2"])
56
- s.add_dependency(%q<jeweler>, ["~> 1.8"])
54
+ s.add_dependency(%q<jeweler>, ["~> 2.0"])
57
55
  s.add_dependency(%q<rspec>, ["~> 2.10"])
58
56
  s.add_dependency(%q<rdoc>, ["~> 3.12"])
59
57
  s.add_dependency(%q<yard>, ["~> 0.8"])
58
+ s.add_dependency(%q<vagrant>, [">= 1.5"])
60
59
  end
61
60
  else
62
- s.add_dependency(%q<coral_cloud>, ["~> 0.1"])
63
- s.add_dependency(%q<coral_plan>, ["~> 0.1"])
64
- s.add_dependency(%q<coral_vagrant>, ["~> 0.1"])
61
+ s.add_dependency(%q<corl>, ["~> 0.5"])
65
62
  s.add_dependency(%q<bundler>, ["~> 1.2"])
66
- s.add_dependency(%q<jeweler>, ["~> 1.8"])
63
+ s.add_dependency(%q<jeweler>, ["~> 2.0"])
67
64
  s.add_dependency(%q<rspec>, ["~> 2.10"])
68
65
  s.add_dependency(%q<rdoc>, ["~> 3.12"])
69
66
  s.add_dependency(%q<yard>, ["~> 0.8"])
67
+ s.add_dependency(%q<vagrant>, [">= 1.5"])
70
68
  end
71
69
  end
72
70
 
@@ -1,27 +1,25 @@
1
1
 
2
- home = File.dirname(__FILE__)
3
-
4
- $:.unshift(home) unless
5
- $:.include?(home) || $:.include?(File.expand_path(home))
6
-
2
+ #*******************************************************************************
3
+ # CORL (Cluster Orchestration and Research Library)
4
+ #
5
+ # provides CORL (github.com/coralnexus/corl)
6
+ # built on Nucleon (github.com/coralnexus/nucleon)
7
+ #
8
+ # A framework that provides a simple foundation for growing organically in
9
+ # the cloud.
10
+ #
11
+ # Author:: Adrian Webb (mailto:adrian.webb@coralnexus.com)
12
+ # License:: Apache license, version 2
7
13
  #-------------------------------------------------------------------------------
8
14
 
9
15
  require 'rubygems'
10
- require 'coral_cloud'
11
- require 'coral_plan'
12
- require 'coral_vagrant'
16
+ require 'corl'
13
17
 
14
18
  #*******************************************************************************
15
- # Coral Meta Package
16
- #
17
- # This provides all Coral libraries in an easy to use package.
18
- #
19
- # Author:: Adrian Webb (mailto:adrian.webb@coraltech.net)
20
- # License:: GPLv3
19
+ ## Coral Meta Package
20
+ ##
21
21
  module Coral
22
- module Meta
23
-
24
- VERSION = File.read(File.join(File.dirname(__FILE__), '..', 'VERSION'))
25
-
22
+ def self.VERSION
23
+ File.read(File.join(File.dirname(__FILE__), '..', 'VERSION'))
24
+ end
26
25
  end
27
- end
metadata CHANGED
@@ -1,181 +1,144 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: coral
3
- version: !ruby/object:Gem::Version
4
- hash: 25
5
- prerelease:
6
- segments:
7
- - 0
8
- - 1
9
- - 1
10
- version: 0.1.1
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.5.0
11
5
  platform: ruby
12
- authors:
6
+ authors:
13
7
  - Adrian Webb
14
8
  autorequire:
15
9
  bindir: bin
16
10
  cert_chain: []
17
-
18
- date: 2013-02-08 00:00:00 Z
19
- dependencies:
20
- - !ruby/object:Gem::Dependency
21
- name: coral_cloud
22
- prerelease: false
23
- requirement: &id001 !ruby/object:Gem::Requirement
24
- none: false
25
- requirements:
26
- - - ~>
27
- - !ruby/object:Gem::Version
28
- hash: 9
29
- segments:
30
- - 0
31
- - 1
32
- version: "0.1"
33
- type: :runtime
34
- version_requirements: *id001
35
- - !ruby/object:Gem::Dependency
36
- name: coral_plan
37
- prerelease: false
38
- requirement: &id002 !ruby/object:Gem::Requirement
39
- none: false
40
- requirements:
41
- - - ~>
42
- - !ruby/object:Gem::Version
43
- hash: 9
44
- segments:
45
- - 0
46
- - 1
47
- version: "0.1"
11
+ date: 2014-08-25 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: corl
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '0.5'
48
20
  type: :runtime
49
- version_requirements: *id002
50
- - !ruby/object:Gem::Dependency
51
- name: coral_vagrant
52
21
  prerelease: false
53
- requirement: &id003 !ruby/object:Gem::Requirement
54
- none: false
55
- requirements:
56
- - - ~>
57
- - !ruby/object:Gem::Version
58
- hash: 9
59
- segments:
60
- - 0
61
- - 1
62
- version: "0.1"
63
- type: :runtime
64
- version_requirements: *id003
65
- - !ruby/object:Gem::Dependency
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '0.5'
27
+ - !ruby/object:Gem::Dependency
66
28
  name: bundler
67
- prerelease: false
68
- requirement: &id004 !ruby/object:Gem::Requirement
69
- none: false
70
- requirements:
71
- - - ~>
72
- - !ruby/object:Gem::Version
73
- hash: 11
74
- segments:
75
- - 1
76
- - 2
77
- version: "1.2"
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.2'
78
34
  type: :development
79
- version_requirements: *id004
80
- - !ruby/object:Gem::Dependency
81
- name: jeweler
82
35
  prerelease: false
83
- requirement: &id005 !ruby/object:Gem::Requirement
84
- none: false
85
- requirements:
86
- - - ~>
87
- - !ruby/object:Gem::Version
88
- hash: 31
89
- segments:
90
- - 1
91
- - 8
92
- version: "1.8"
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.2'
41
+ - !ruby/object:Gem::Dependency
42
+ name: jeweler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '2.0'
93
48
  type: :development
94
- version_requirements: *id005
95
- - !ruby/object:Gem::Dependency
96
- name: rspec
97
49
  prerelease: false
98
- requirement: &id006 !ruby/object:Gem::Requirement
99
- none: false
100
- requirements:
101
- - - ~>
102
- - !ruby/object:Gem::Version
103
- hash: 23
104
- segments:
105
- - 2
106
- - 10
107
- version: "2.10"
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '2.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '2.10'
108
62
  type: :development
109
- version_requirements: *id006
110
- - !ruby/object:Gem::Dependency
111
- name: rdoc
112
63
  prerelease: false
113
- requirement: &id007 !ruby/object:Gem::Requirement
114
- none: false
115
- requirements:
116
- - - ~>
117
- - !ruby/object:Gem::Version
118
- hash: 31
119
- segments:
120
- - 3
121
- - 12
122
- version: "3.12"
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '2.10'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rdoc
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '3.12'
123
76
  type: :development
124
- version_requirements: *id007
125
- - !ruby/object:Gem::Dependency
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '3.12'
83
+ - !ruby/object:Gem::Dependency
126
84
  name: yard
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '0.8'
90
+ type: :development
127
91
  prerelease: false
128
- requirement: &id008 !ruby/object:Gem::Requirement
129
- none: false
130
- requirements:
131
- - - ~>
132
- - !ruby/object:Gem::Version
133
- hash: 27
134
- segments:
135
- - 0
136
- - 8
137
- version: "0.8"
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '0.8'
97
+ - !ruby/object:Gem::Dependency
98
+ name: vagrant
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '1.5'
138
104
  type: :development
139
- version_requirements: *id008
140
- description: |-
141
- = coral
142
-
143
- This gem is simply a meta package that installs and requires all other Coral
144
- gems. It is meant to provide an easy way to install the Coral system gems.
145
-
146
- Note: These libraries are still very early in development!
147
-
148
- == Contributing to coral
149
-
150
- * Check out the latest master to make sure the feature hasn't been implemented
151
- or the bug hasn't been fixed yet.
152
- * Check out the issue tracker to make sure someone already hasn't requested
153
- it and/or contributed it.
154
- * Fork the project.
155
- * Start a feature/bugfix branch.
156
- * Commit and push until you are happy with your contribution.
157
- * Make sure to add tests for it. This is important so I don't break it in a
158
- future version unintentionally.
159
- * Please try not to mess with the Rakefile, version, or history. If you want
160
- to have your own version, or is otherwise necessary, that is fine, but
161
- please isolate to its own commit so I can cherry-pick around it.
162
-
163
- == Copyright
164
-
165
- Licensed under GPLv3. See LICENSE.txt for further details.
166
-
167
- Copyright (c) 2013 Adrian Webb <adrian.webb@coraltech.net>
168
- Coral Technology Group LLC
169
- email: adrian.webb@coraltech.net
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '1.5'
111
+ description: "== coral\n\nThis gem is simply a meta package that installs and requires
112
+ the CORL gem.\n\nNote: CORL is still early in development!\n\nDO NOT USE IN PRODUCTION
113
+ YET!!\n\n\nNow you get to hear the story of two names.\n\nShort story first; We
114
+ switched to the CORL name (github.com/coralnexus/corl).\n\nIf your interested in
115
+ why:\n\nThe original name of the CORL project was Coral, and we were exited when
116
+ we found \nthe Ruby gem name \"coral\" available. Our first versions of our CORL
117
+ system were\nnamed coral_core, coral_cloud, coral_vagrant, coral_plan, and many
118
+ more were planned.\nWe created a meta gem (this one) to install a core combination
119
+ of gems. \n\nDuring the course of development we found another project that came
120
+ before ours that \nuses the name coral, so we decided to update our project name,
121
+ so as to avoid conflicts.\n\nFor us Coral is more than a word, it is a concept that
122
+ embodies dynamic ecosystems \nsupporting a rich variety of lifeforms. Coral are
123
+ very interesting creatures and we\nendeavor to create software that helps build
124
+ dynamic ecosystems of digital creatures.\n\nWe decided to use an acronym that sounds
125
+ like the word Coral because the acronym fit\nwith our desire to create something
126
+ good for administration but also good for flexible\nresearch, so we came to Cluster
127
+ Orchestration and Research Library. We split the core\ncomponents out into a small
128
+ concurrent plugin framework called Nucleon, upon which\nCORL is built. All of our
129
+ coral sub gems are integrated into these two.\n\nThis gem exists only as a installer
130
+ for people who accidentally spell coral the right\nway when trying to install the
131
+ CORL system. Use the CORL gem instead.\n\n== Copyright\n\nLicensed under Apache
132
+ license, version 2. See LICENSE.txt for further details.\n\nCopyright (c) 2013-2014
133
+ \ Adrian Webb <adrian.webb@coralnexus.com>\nCoral Technology Group LLC\n"
134
+ email: adrian.webb@coralnexus.com
170
135
  executables: []
171
-
172
136
  extensions: []
173
-
174
- extra_rdoc_files:
137
+ extra_rdoc_files:
175
138
  - LICENSE.txt
176
139
  - README.rdoc
177
- files:
178
- - .document
140
+ files:
141
+ - ".document"
179
142
  - Gemfile
180
143
  - Gemfile.lock
181
144
  - LICENSE.txt
@@ -184,45 +147,34 @@ files:
184
147
  - VERSION
185
148
  - coral.gemspec
186
149
  - lib/coral.rb
187
- homepage: http://github.com/coraltech/ruby-coral
188
- licenses:
189
- - GPLv3
150
+ homepage: http://github.com/coraltech/coral
151
+ licenses:
152
+ - Apache License, Version 2.0
153
+ metadata: {}
190
154
  post_install_message:
191
- rdoc_options:
192
- - --title
193
- - Coral Meta library
194
- - --main
155
+ rdoc_options:
156
+ - "--title"
157
+ - Coral Orchestration and Research Library (alias)
158
+ - "--main"
195
159
  - README.rdoc
196
- - --line-numbers
197
- require_paths:
160
+ - "--line-numbers"
161
+ require_paths:
198
162
  - lib
199
- required_ruby_version: !ruby/object:Gem::Requirement
200
- none: false
201
- requirements:
163
+ required_ruby_version: !ruby/object:Gem::Requirement
164
+ requirements:
202
165
  - - ">="
203
- - !ruby/object:Gem::Version
204
- hash: 53
205
- segments:
206
- - 1
207
- - 8
208
- - 1
209
- version: 1.8.1
210
- required_rubygems_version: !ruby/object:Gem::Requirement
211
- none: false
212
- requirements:
166
+ - !ruby/object:Gem::Version
167
+ version: 1.9.1
168
+ required_rubygems_version: !ruby/object:Gem::Requirement
169
+ requirements:
213
170
  - - ">="
214
- - !ruby/object:Gem::Version
215
- hash: 3
216
- segments:
217
- - 0
218
- version: "0"
171
+ - !ruby/object:Gem::Version
172
+ version: '0'
219
173
  requirements: []
220
-
221
174
  rubyforge_project: coral
222
- rubygems_version: 1.8.15
175
+ rubygems_version: 2.2.2
223
176
  signing_key:
224
- specification_version: 3
225
- summary: Meta package that installs all other Coral gems
177
+ specification_version: 4
178
+ summary: Alternative gem name for the CORL system
226
179
  test_files: []
227
-
228
180
  has_rdoc: