opapp 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.
@@ -0,0 +1,3 @@
1
+ .yardoc
2
+ doc
3
+ pkg
data/.rvmrc ADDED
@@ -0,0 +1 @@
1
+ rvm --create use 1.9.3@opapp_opapp
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source :rubygems
2
+
3
+ gemspec
@@ -0,0 +1,34 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ opapp (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
+ opapp!
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
+ OpApp - A metagem for the OpApp Framework
2
+ Copyright (C) 2011 OpApp Framework 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/>.
@@ -0,0 +1,25 @@
1
+ The OpApp Framework Metagem
2
+ ===========================
3
+ OpApp is a curated set of technologies and a workflow for developing, maintaining, and operating distributed applications. This gem is a metagem and depends on
4
+ the various components required to develop on, participate in, or communicate with an OpApp Framework system. OpApp is built on the PanOps Platform.
5
+
6
+ Troubleshooting
7
+ ---------------
8
+ Please see the [OpApp Framework Troubleshooting](http://www.opapp-framework.org/interests/troubleshooting/) interest page for the most up to date information.
9
+
10
+ Contributing
11
+ ------------
12
+ Please see the [OpApp Framework Contributing](http://www.opapp-framework.org/interests/contributing/) interest page for the most up to date information.
13
+
14
+ Workflow
15
+ --------
16
+ All Applications based on the OpApp framework follow the same development, maintenance, and operational workflow. This streamlines all aspects of the application lifecycle and
17
+ ensures that developer operators aren't out of context and don't need to deal with changing semantics or conventions when transitioning from component to component.
18
+
19
+ Conventions
20
+ -----------
21
+ The OpApp Framework strives to maintain common naming and semantic conventions with little to no variance between components at both a code and user interface level.
22
+
23
+ License
24
+ -------
25
+ OpApp Framework 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.
@@ -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
+
@@ -0,0 +1,27 @@
1
+ # -*- encoding: utf-8 -*-
2
+ Gem::Specification.new do |gem|
3
+ gem.name = 'opapp'
4
+ gem.version = '0.0.1alpha'
5
+
6
+ gem.authors = ["OpApp Framework Contributors"]
7
+ gem.email = ["engineering@opapp-framework.org"]
8
+
9
+ gem.summary = %q{A curated set of technologies and a workflow for developing, maintaining, and operating distributed applications.}
10
+ gem.description = %q{A curated set of technologies and a workflow for developing, maintaining, and operating distributed applications. This gem is a metagem and depends on the various components required to develop on, participate in, or communicate with an OpApp Framework system. OpApp is built on the PanOps Platform.}
11
+
12
+ gem.homepage = 'http://www.opapp-framework.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'
@@ -0,0 +1 @@
1
+ require 'rspec'
metadata ADDED
@@ -0,0 +1,117 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: opapp
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1alpha
5
+ prerelease: 5
6
+ platform: ruby
7
+ authors:
8
+ - OpApp Framework 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: &5377440 !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: *5377440
25
+ - !ruby/object:Gem::Dependency
26
+ name: mocha
27
+ requirement: &5376120 !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: *5376120
36
+ - !ruby/object:Gem::Dependency
37
+ name: rspec
38
+ requirement: &5374540 !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: *5374540
47
+ - !ruby/object:Gem::Dependency
48
+ name: yard
49
+ requirement: &5373120 !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: *5373120
58
+ - !ruby/object:Gem::Dependency
59
+ name: rdiscount
60
+ requirement: &5372320 !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: *5372320
69
+ description: A curated set of technologies and a workflow for developing, maintaining,
70
+ and operating distributed applications. This gem is a metagem and depends on the
71
+ various components required to develop on, participate in, or communicate with an
72
+ OpApp Framework system. OpApp is built on the PanOps Platform.
73
+ email:
74
+ - engineering@opapp-framework.org
75
+ executables: []
76
+ extensions: []
77
+ extra_rdoc_files: []
78
+ files:
79
+ - .gitignore
80
+ - .rvmrc
81
+ - Gemfile
82
+ - Gemfile.lock
83
+ - LICENSE
84
+ - README.md
85
+ - Rakefile
86
+ - opapp.gemspec
87
+ - spec/dependencies/development_dependencies_spec.rb
88
+ - spec/spec_helper.rb
89
+ homepage: http://www.opapp-framework.org/
90
+ licenses: []
91
+ post_install_message:
92
+ rdoc_options: []
93
+ require_paths:
94
+ - lib
95
+ required_ruby_version: !ruby/object:Gem::Requirement
96
+ none: false
97
+ requirements:
98
+ - - ! '>='
99
+ - !ruby/object:Gem::Version
100
+ version: '0'
101
+ required_rubygems_version: !ruby/object:Gem::Requirement
102
+ none: false
103
+ requirements:
104
+ - - ! '>='
105
+ - !ruby/object:Gem::Version
106
+ version: 1.3.6
107
+ requirements: []
108
+ rubyforge_project:
109
+ rubygems_version: 1.8.10
110
+ signing_key:
111
+ specification_version: 3
112
+ summary: A curated set of technologies and a workflow for developing, maintaining,
113
+ and operating distributed applications.
114
+ test_files:
115
+ - spec/dependencies/development_dependencies_spec.rb
116
+ - spec/spec_helper.rb
117
+ has_rdoc: