panops 0.0.1alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +3 -0
- data/.rvmrc +1 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +34 -0
- data/LICENSE +15 -0
- data/README.md +19 -0
- data/Rakefile +25 -0
- data/panops.gemspec +27 -0
- data/spec/dependencies/development_dependencies_spec.rb +1 -0
- data/spec/spec_helper.rb +1 -0
- metadata +116 -0
data/.gitignore
ADDED
data/.rvmrc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
rvm --create use 1.9.3@panops_panops
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
panops (0.0.1alpha)
|
|
5
|
+
|
|
6
|
+
GEM
|
|
7
|
+
remote: http://rubygems.org/
|
|
8
|
+
specs:
|
|
9
|
+
diff-lcs (1.1.3)
|
|
10
|
+
metaclass (0.0.1)
|
|
11
|
+
mocha (0.10.0)
|
|
12
|
+
metaclass (~> 0.0.1)
|
|
13
|
+
rake (0.9.2.2)
|
|
14
|
+
rdiscount (1.6.8)
|
|
15
|
+
rspec (2.7.0)
|
|
16
|
+
rspec-core (~> 2.7.0)
|
|
17
|
+
rspec-expectations (~> 2.7.0)
|
|
18
|
+
rspec-mocks (~> 2.7.0)
|
|
19
|
+
rspec-core (2.7.1)
|
|
20
|
+
rspec-expectations (2.7.0)
|
|
21
|
+
diff-lcs (~> 1.1.2)
|
|
22
|
+
rspec-mocks (2.7.0)
|
|
23
|
+
yard (0.7.3)
|
|
24
|
+
|
|
25
|
+
PLATFORMS
|
|
26
|
+
ruby
|
|
27
|
+
|
|
28
|
+
DEPENDENCIES
|
|
29
|
+
mocha (~> 0.10.0)
|
|
30
|
+
panops!
|
|
31
|
+
rake (~> 0.9.2)
|
|
32
|
+
rdiscount (~> 1.6.8)
|
|
33
|
+
rspec (~> 2.7.0)
|
|
34
|
+
yard (~> 0.7)
|
data/LICENSE
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
PanOps - A metagem for the PanOps Platform
|
|
2
|
+
Copyright (C) 2011 PanOps Platform Contributors
|
|
3
|
+
|
|
4
|
+
This program is free software: you can redistribute it and/or modify
|
|
5
|
+
it under the terms of the GNU General Public License as published by
|
|
6
|
+
the Free Software Foundation, either version 3 of the License, or
|
|
7
|
+
(at your option) any later version.
|
|
8
|
+
|
|
9
|
+
This program is distributed in the hope that it will be useful,
|
|
10
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
11
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
12
|
+
GNU General Public License for more details.
|
|
13
|
+
|
|
14
|
+
You should have received a copy of the GNU General Public License
|
|
15
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
data/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
The PanOps Platform Metagem
|
|
2
|
+
===========================
|
|
3
|
+
Installing this gem installs all of the components required to participate in or communicate with a PanOps Platform system.
|
|
4
|
+
|
|
5
|
+
Troubleshooting
|
|
6
|
+
---------------
|
|
7
|
+
Please see the [PanOps Platform Troubleshooting](http://www.panops.org/interests/troubleshooting/) interest page for the most up to date information.
|
|
8
|
+
|
|
9
|
+
Contributing
|
|
10
|
+
------------
|
|
11
|
+
Please see the [PanOps Platform Contributing](http://www.panops.org/interests/contributing/) interest page for the most up to date information.
|
|
12
|
+
|
|
13
|
+
Conventions
|
|
14
|
+
-----------
|
|
15
|
+
PanOps strives to maintain common naming and semantic conventions with little to no variance between components at both a code and user interface level.
|
|
16
|
+
|
|
17
|
+
License
|
|
18
|
+
-------
|
|
19
|
+
PanOps Platform components may be licensed under a variety of licenses. For the license for this particular gem, please see LICENSE file at the root of this project.
|
data/Rakefile
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
require 'bundler'
|
|
2
|
+
Bundler::GemHelper.install_tasks
|
|
3
|
+
|
|
4
|
+
require 'rspec/core/rake_task'
|
|
5
|
+
|
|
6
|
+
RSpec::Core::RakeTask.new do |t|
|
|
7
|
+
t.pattern = "#{File.dirname(__FILE__)}/spec/**/*_spec.rb"
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
task :doc => [:'doc:yard']
|
|
11
|
+
|
|
12
|
+
namespace :doc do
|
|
13
|
+
require 'yard'
|
|
14
|
+
YARD::Rake::YardocTask.new do |task|
|
|
15
|
+
task.files = ['lib/**/*.rb', '-', 'LICENSE']
|
|
16
|
+
task.options = [
|
|
17
|
+
'--protected',
|
|
18
|
+
'--output-dir', 'doc/yard',
|
|
19
|
+
'--markup', 'markdown'
|
|
20
|
+
]
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
task :default => [:spec, :doc]
|
|
25
|
+
|
data/panops.gemspec
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
Gem::Specification.new do |gem|
|
|
3
|
+
gem.name = 'panops'
|
|
4
|
+
gem.version = '0.0.1alpha'
|
|
5
|
+
|
|
6
|
+
gem.authors = ["PanOps Platform Contributors"]
|
|
7
|
+
gem.email = ["engineering@panops.org"]
|
|
8
|
+
|
|
9
|
+
gem.summary = %q{A reliable, operable, distributed, self-organizing resource management and integration platform for distributed applications.}
|
|
10
|
+
gem.description = %q{A reliable, operable, distributed, self-organizing resource management and integration platform for distributed applications. This gem is a metagem and depends on the various components required for a PanOps platform bootstrap install.}
|
|
11
|
+
|
|
12
|
+
gem.homepage = 'http://www.panops.org/'
|
|
13
|
+
|
|
14
|
+
gem.executables = `git ls-files -- bin/*`.split("\n").map{|f| File.basename f }
|
|
15
|
+
gem.test_files = `git ls-files -- {test,spec,features}/*`.split "\n"
|
|
16
|
+
gem.files = `git ls-files`.split "\n"
|
|
17
|
+
|
|
18
|
+
gem.require_paths = ['lib']
|
|
19
|
+
|
|
20
|
+
gem.required_rubygems_version = Gem::Requirement.new '>= 1.3.6'
|
|
21
|
+
|
|
22
|
+
gem.add_development_dependency 'rake', '~> 0.9.2'
|
|
23
|
+
gem.add_development_dependency 'mocha', '~> 0.10.0'
|
|
24
|
+
gem.add_development_dependency 'rspec', '~> 2.7.0'
|
|
25
|
+
gem.add_development_dependency 'yard', '~> 0.7'
|
|
26
|
+
gem.add_development_dependency 'rdiscount', '~> 1.6.8'
|
|
27
|
+
end
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require 'spec_helper'
|
data/spec/spec_helper.rb
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require 'rspec'
|
metadata
ADDED
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: panops
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1alpha
|
|
5
|
+
prerelease: 5
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- PanOps Platform Contributors
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
date: 2011-11-10 00:00:00.000000000 Z
|
|
13
|
+
dependencies:
|
|
14
|
+
- !ruby/object:Gem::Dependency
|
|
15
|
+
name: rake
|
|
16
|
+
requirement: &15999240 !ruby/object:Gem::Requirement
|
|
17
|
+
none: false
|
|
18
|
+
requirements:
|
|
19
|
+
- - ~>
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: 0.9.2
|
|
22
|
+
type: :development
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: *15999240
|
|
25
|
+
- !ruby/object:Gem::Dependency
|
|
26
|
+
name: mocha
|
|
27
|
+
requirement: &15998600 !ruby/object:Gem::Requirement
|
|
28
|
+
none: false
|
|
29
|
+
requirements:
|
|
30
|
+
- - ~>
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: 0.10.0
|
|
33
|
+
type: :development
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: *15998600
|
|
36
|
+
- !ruby/object:Gem::Dependency
|
|
37
|
+
name: rspec
|
|
38
|
+
requirement: &15997920 !ruby/object:Gem::Requirement
|
|
39
|
+
none: false
|
|
40
|
+
requirements:
|
|
41
|
+
- - ~>
|
|
42
|
+
- !ruby/object:Gem::Version
|
|
43
|
+
version: 2.7.0
|
|
44
|
+
type: :development
|
|
45
|
+
prerelease: false
|
|
46
|
+
version_requirements: *15997920
|
|
47
|
+
- !ruby/object:Gem::Dependency
|
|
48
|
+
name: yard
|
|
49
|
+
requirement: &15997320 !ruby/object:Gem::Requirement
|
|
50
|
+
none: false
|
|
51
|
+
requirements:
|
|
52
|
+
- - ~>
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '0.7'
|
|
55
|
+
type: :development
|
|
56
|
+
prerelease: false
|
|
57
|
+
version_requirements: *15997320
|
|
58
|
+
- !ruby/object:Gem::Dependency
|
|
59
|
+
name: rdiscount
|
|
60
|
+
requirement: &15996640 !ruby/object:Gem::Requirement
|
|
61
|
+
none: false
|
|
62
|
+
requirements:
|
|
63
|
+
- - ~>
|
|
64
|
+
- !ruby/object:Gem::Version
|
|
65
|
+
version: 1.6.8
|
|
66
|
+
type: :development
|
|
67
|
+
prerelease: false
|
|
68
|
+
version_requirements: *15996640
|
|
69
|
+
description: A reliable, operable, distributed, self-organizing resource management
|
|
70
|
+
and integration platform for distributed applications. This gem is a metagem and
|
|
71
|
+
depends on the various components required for a PanOps platform bootstrap install.
|
|
72
|
+
email:
|
|
73
|
+
- engineering@panops.org
|
|
74
|
+
executables: []
|
|
75
|
+
extensions: []
|
|
76
|
+
extra_rdoc_files: []
|
|
77
|
+
files:
|
|
78
|
+
- .gitignore
|
|
79
|
+
- .rvmrc
|
|
80
|
+
- Gemfile
|
|
81
|
+
- Gemfile.lock
|
|
82
|
+
- LICENSE
|
|
83
|
+
- README.md
|
|
84
|
+
- Rakefile
|
|
85
|
+
- panops.gemspec
|
|
86
|
+
- spec/dependencies/development_dependencies_spec.rb
|
|
87
|
+
- spec/spec_helper.rb
|
|
88
|
+
homepage: http://www.panops.org/
|
|
89
|
+
licenses: []
|
|
90
|
+
post_install_message:
|
|
91
|
+
rdoc_options: []
|
|
92
|
+
require_paths:
|
|
93
|
+
- lib
|
|
94
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
95
|
+
none: false
|
|
96
|
+
requirements:
|
|
97
|
+
- - ! '>='
|
|
98
|
+
- !ruby/object:Gem::Version
|
|
99
|
+
version: '0'
|
|
100
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
101
|
+
none: false
|
|
102
|
+
requirements:
|
|
103
|
+
- - ! '>='
|
|
104
|
+
- !ruby/object:Gem::Version
|
|
105
|
+
version: 1.3.6
|
|
106
|
+
requirements: []
|
|
107
|
+
rubyforge_project:
|
|
108
|
+
rubygems_version: 1.8.10
|
|
109
|
+
signing_key:
|
|
110
|
+
specification_version: 3
|
|
111
|
+
summary: A reliable, operable, distributed, self-organizing resource management and
|
|
112
|
+
integration platform for distributed applications.
|
|
113
|
+
test_files:
|
|
114
|
+
- spec/dependencies/development_dependencies_spec.rb
|
|
115
|
+
- spec/spec_helper.rb
|
|
116
|
+
has_rdoc:
|