panops-core 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 +17 -0
- data/README.md +9 -0
- data/Rakefile +25 -0
- data/bin/panops +1 -0
- data/lib/panops/core.rb +5 -0
- data/panops-core.gemspec +28 -0
- data/spec/dependencies/development_dependencies_spec.rb +1 -0
- data/spec/spec_helper.rb +1 -0
- metadata +117 -0
data/.gitignore
ADDED
data/.rvmrc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
rvm --create use 1.9.3@panops_panops-core
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
panops-core (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-core!
|
|
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,17 @@
|
|
|
1
|
+
Unless otherwise indicated in the source file:
|
|
2
|
+
|
|
3
|
+
PanOps Core - Common PanOps Components
|
|
4
|
+
Copyright (C) <2011> <PanOps Platform Contributors>
|
|
5
|
+
|
|
6
|
+
This program is free software: you can redistribute it and/or modify
|
|
7
|
+
it under the terms of the GNU General Public License as published by
|
|
8
|
+
the Free Software Foundation, either version 3 of the License, or
|
|
9
|
+
(at your option) any later version.
|
|
10
|
+
|
|
11
|
+
This program is distributed in the hope that it will be useful,
|
|
12
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14
|
+
GNU General Public License for more details.
|
|
15
|
+
|
|
16
|
+
You should have received a copy of the GNU General Public License
|
|
17
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
data/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
PanOps Platform Core
|
|
2
|
+
====================
|
|
3
|
+
This gem contains components absolutely required for interaction with PanOps.
|
|
4
|
+
For example: the PanOps domain object model/validations, etc.
|
|
5
|
+
|
|
6
|
+
End-User Documentation
|
|
7
|
+
----------------------
|
|
8
|
+
Please see the *panops* gem for end-user oriented documentation. This
|
|
9
|
+
gem contains only developer documentation.
|
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/bin/panops
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
data/lib/panops/core.rb
ADDED
data/panops-core.gemspec
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
Gem::Specification.new do |gem|
|
|
3
|
+
gem.name = 'panops-core'
|
|
4
|
+
gem.version = '0.0.1alpha'
|
|
5
|
+
|
|
6
|
+
gem.authors = ["PanOps Platform Contributors"]
|
|
7
|
+
gem.email = ["engineering@panops.org"]
|
|
8
|
+
|
|
9
|
+
gem.summary = %q{This gem contains components absolutely required for interaction with PanOps.}
|
|
10
|
+
gem.description = %q{This gem contains components absolutely required for interaction with PanOps. For example: the PanOps domain object model/validations, etc.}
|
|
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_ruby_version = '>= 1.9.3'
|
|
21
|
+
gem.required_rubygems_version = Gem::Requirement.new '>= 1.3.6'
|
|
22
|
+
|
|
23
|
+
gem.add_development_dependency 'rake', '~> 0.9.2'
|
|
24
|
+
gem.add_development_dependency 'mocha', '~> 0.10.0'
|
|
25
|
+
gem.add_development_dependency 'rspec', '~> 2.7.0'
|
|
26
|
+
gem.add_development_dependency 'yard', '~> 0.7'
|
|
27
|
+
gem.add_development_dependency 'rdiscount', '~> 1.6.8'
|
|
28
|
+
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,117 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: panops-core
|
|
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-16 00:00:00.000000000 Z
|
|
13
|
+
dependencies:
|
|
14
|
+
- !ruby/object:Gem::Dependency
|
|
15
|
+
name: rake
|
|
16
|
+
requirement: &18271160 !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: *18271160
|
|
25
|
+
- !ruby/object:Gem::Dependency
|
|
26
|
+
name: mocha
|
|
27
|
+
requirement: &18269660 !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: *18269660
|
|
36
|
+
- !ruby/object:Gem::Dependency
|
|
37
|
+
name: rspec
|
|
38
|
+
requirement: &18268420 !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: *18268420
|
|
47
|
+
- !ruby/object:Gem::Dependency
|
|
48
|
+
name: yard
|
|
49
|
+
requirement: &18267580 !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: *18267580
|
|
58
|
+
- !ruby/object:Gem::Dependency
|
|
59
|
+
name: rdiscount
|
|
60
|
+
requirement: &18589820 !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: *18589820
|
|
69
|
+
description: ! 'This gem contains components absolutely required for interaction with
|
|
70
|
+
PanOps. For example: the PanOps domain object model/validations, etc.'
|
|
71
|
+
email:
|
|
72
|
+
- engineering@panops.org
|
|
73
|
+
executables:
|
|
74
|
+
- panops
|
|
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
|
+
- bin/panops
|
|
86
|
+
- lib/panops/core.rb
|
|
87
|
+
- panops-core.gemspec
|
|
88
|
+
- spec/dependencies/development_dependencies_spec.rb
|
|
89
|
+
- spec/spec_helper.rb
|
|
90
|
+
homepage: http://www.panops.org/
|
|
91
|
+
licenses: []
|
|
92
|
+
post_install_message:
|
|
93
|
+
rdoc_options: []
|
|
94
|
+
require_paths:
|
|
95
|
+
- lib
|
|
96
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
97
|
+
none: false
|
|
98
|
+
requirements:
|
|
99
|
+
- - ! '>='
|
|
100
|
+
- !ruby/object:Gem::Version
|
|
101
|
+
version: 1.9.3
|
|
102
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
103
|
+
none: false
|
|
104
|
+
requirements:
|
|
105
|
+
- - ! '>='
|
|
106
|
+
- !ruby/object:Gem::Version
|
|
107
|
+
version: 1.3.6
|
|
108
|
+
requirements: []
|
|
109
|
+
rubyforge_project:
|
|
110
|
+
rubygems_version: 1.8.10
|
|
111
|
+
signing_key:
|
|
112
|
+
specification_version: 3
|
|
113
|
+
summary: This gem contains components absolutely required for interaction with PanOps.
|
|
114
|
+
test_files:
|
|
115
|
+
- spec/dependencies/development_dependencies_spec.rb
|
|
116
|
+
- spec/spec_helper.rb
|
|
117
|
+
has_rdoc:
|