occi 4.0.0.beta.1 → 4.0.0.beta.2
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/ext/mkrf_conf.rb +21 -0
- metadata +8 -22
data/ext/mkrf_conf.rb
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rubygems/command.rb'
|
3
|
+
require 'rubygems/dependency_installer.rb'
|
4
|
+
|
5
|
+
begin
|
6
|
+
Gem::Command.build_args = ARGV
|
7
|
+
rescue NoMethodError
|
8
|
+
# do nothing but warn the user
|
9
|
+
warn "Gem::Command doesn't have a method named 'build_args'!"
|
10
|
+
end
|
11
|
+
|
12
|
+
warn 'Installing platform-specific dependencies.'
|
13
|
+
|
14
|
+
warn 'Installing the most recent version of \'rake\''
|
15
|
+
inst = Gem::DependencyInstaller.new
|
16
|
+
inst.install "rake"
|
17
|
+
|
18
|
+
# create dummy rakefile to indicate success
|
19
|
+
f = File.open(File.join(File.dirname(__FILE__), "Rakefile"), "w")
|
20
|
+
f.write "task :default\n"
|
21
|
+
f.close
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: occi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0.0.beta.
|
4
|
+
version: 4.0.0.beta.2
|
5
5
|
prerelease: 6
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2013-
|
14
|
+
date: 2013-08-03 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: occi-cli
|
@@ -29,22 +29,6 @@ dependencies:
|
|
29
29
|
- - ! '>='
|
30
30
|
- !ruby/object:Gem::Version
|
31
31
|
version: '0'
|
32
|
-
- !ruby/object:Gem::Dependency
|
33
|
-
name: rubygems-tasks
|
34
|
-
requirement: !ruby/object:Gem::Requirement
|
35
|
-
none: false
|
36
|
-
requirements:
|
37
|
-
- - ! '>='
|
38
|
-
- !ruby/object:Gem::Version
|
39
|
-
version: '0'
|
40
|
-
type: :development
|
41
|
-
prerelease: false
|
42
|
-
version_requirements: !ruby/object:Gem::Requirement
|
43
|
-
none: false
|
44
|
-
requirements:
|
45
|
-
- - ! '>='
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: '0'
|
48
32
|
- !ruby/object:Gem::Dependency
|
49
33
|
name: rake
|
50
34
|
requirement: !ruby/object:Gem::Requirement
|
@@ -68,13 +52,16 @@ email:
|
|
68
52
|
- piotr.kasprzak@gwdg.de
|
69
53
|
- xparak@mail.muni.cz
|
70
54
|
executables: []
|
71
|
-
extensions:
|
55
|
+
extensions:
|
56
|
+
- ext/mkrf_conf.rb
|
72
57
|
extra_rdoc_files: []
|
73
|
-
files:
|
58
|
+
files:
|
59
|
+
- ext/mkrf_conf.rb
|
74
60
|
homepage: https://github.com/gwdg/rOCCI
|
75
61
|
licenses:
|
76
62
|
- Apache License, Version 2.0
|
77
|
-
post_install_message:
|
63
|
+
post_install_message: This gem is just a wrapper providing backward compatibility
|
64
|
+
and might be removed in the future! Please, consider using 'occi-cli' directly.
|
78
65
|
rdoc_options: []
|
79
66
|
require_paths:
|
80
67
|
- lib
|
@@ -97,4 +84,3 @@ signing_key:
|
|
97
84
|
specification_version: 3
|
98
85
|
summary: Executable OCCI client
|
99
86
|
test_files: []
|
100
|
-
has_rdoc:
|