osgi 0.0.1
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/LICENSE +176 -0
- data/NOTICE +6 -0
- data/README.rdoc +50 -0
- data/Rakefile +45 -0
- data/lib/osgi.rb +24 -0
- data/lib/osgi/bundle.rb +201 -0
- data/lib/osgi/bundle_package.rb +104 -0
- data/lib/osgi/container.rb +145 -0
- data/lib/osgi/execution_environment.rb +199 -0
- data/lib/osgi/registry.rb +137 -0
- data/lib/osgi/resolving_strategies.rb +107 -0
- data/lib/osgi/version.rb +131 -0
- data/osgi.gemspec +36 -0
- data/spec/osgi/bundle_package_spec.rb +44 -0
- data/spec/osgi/bundle_spec.rb +94 -0
- data/spec/osgi/container_spec.rb +89 -0
- data/spec/osgi/execution_environment_spec.rb +48 -0
- data/spec/osgi/registry_spec.rb +84 -0
- data/spec/osgi/resolving_strategies_spec.rb +116 -0
- data/spec/osgi/version_spec.rb +133 -0
- data/spec/spec_helpers.rb +131 -0
- metadata +94 -0
metadata
ADDED
@@ -0,0 +1,94 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: osgi
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Antoine Toulme
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2010-04-16 00:00:00 -07:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: manifest
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - "="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.8
|
24
|
+
version:
|
25
|
+
description: |
|
26
|
+
The OSGi framework offers an unique way for Java bundles to communicate and depend on each other.
|
27
|
+
This implementation of the OSGi framework is supposed to represent the framework as it should be in Ruby.
|
28
|
+
|
29
|
+
email: antoine@lunar-ocean.com
|
30
|
+
executables: []
|
31
|
+
|
32
|
+
extensions: []
|
33
|
+
|
34
|
+
extra_rdoc_files:
|
35
|
+
- README.rdoc
|
36
|
+
- LICENSE
|
37
|
+
- NOTICE
|
38
|
+
files:
|
39
|
+
- lib/osgi/bundle.rb
|
40
|
+
- lib/osgi/bundle_package.rb
|
41
|
+
- lib/osgi/container.rb
|
42
|
+
- lib/osgi/execution_environment.rb
|
43
|
+
- lib/osgi/registry.rb
|
44
|
+
- lib/osgi/resolving_strategies.rb
|
45
|
+
- lib/osgi/version.rb
|
46
|
+
- lib/osgi.rb
|
47
|
+
- spec/osgi/bundle_package_spec.rb
|
48
|
+
- spec/osgi/bundle_spec.rb
|
49
|
+
- spec/osgi/container_spec.rb
|
50
|
+
- spec/osgi/execution_environment_spec.rb
|
51
|
+
- spec/osgi/registry_spec.rb
|
52
|
+
- spec/osgi/resolving_strategies_spec.rb
|
53
|
+
- spec/osgi/version_spec.rb
|
54
|
+
- spec/spec_helpers.rb
|
55
|
+
- osgi.gemspec
|
56
|
+
- LICENSE
|
57
|
+
- NOTICE
|
58
|
+
- README.rdoc
|
59
|
+
- Rakefile
|
60
|
+
has_rdoc: true
|
61
|
+
homepage: http://github.com/atoulme/osgi
|
62
|
+
licenses: []
|
63
|
+
|
64
|
+
post_install_message:
|
65
|
+
rdoc_options:
|
66
|
+
- --title
|
67
|
+
- OSGi
|
68
|
+
- --main
|
69
|
+
- README.rdoc
|
70
|
+
- --webcvs
|
71
|
+
- http://github.com/atoulme/osgi
|
72
|
+
require_paths:
|
73
|
+
- lib
|
74
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
75
|
+
requirements:
|
76
|
+
- - ">="
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: "0"
|
79
|
+
version:
|
80
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
81
|
+
requirements:
|
82
|
+
- - ">="
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: "0"
|
85
|
+
version:
|
86
|
+
requirements: []
|
87
|
+
|
88
|
+
rubyforge_project:
|
89
|
+
rubygems_version: 1.3.5
|
90
|
+
signing_key:
|
91
|
+
specification_version: 3
|
92
|
+
summary: An implementation of the OSGi framework in Ruby
|
93
|
+
test_files: []
|
94
|
+
|