r2corba_devkit 1.0.0

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.
Files changed (3) hide show
  1. checksums.yaml +7 -0
  2. data/lib/rubygems_plugin.rb +26 -0
  3. metadata +44 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 5e83edaed4495d14e2138d6b0f00a70f36a9f4f7
4
+ data.tar.gz: f080a16fe41e8cac0b3ed9837dd9cb0f232fd67a
5
+ SHA512:
6
+ metadata.gz: 427f7629af52b21b2db4d802ca37f14bf133c4460f55817b8d10ddc6e9723e5834fcb559d61b6b7b11e1756f358a1ec3e0ded374db25bb8bab83000916e39ff5
7
+ data.tar.gz: 4ddda8e98ea292b7a48084cfc31ab8fa7c66cfb14ac28f2157985698ca4a31d75d78b84cdfb734379c7b7357ec750ea4a1d83794f76f9b45d53d129dc08a7277
@@ -0,0 +1,26 @@
1
+ #--------------------------------------------------------------------
2
+ # rubygems_plugin.rb - Devkit faker
3
+ #
4
+ # Author: Martin Corino
5
+ #
6
+ # This program is free software; you can redistribute it and/or
7
+ # modify it under the terms of the R2CORBA LICENSE which is
8
+ # included with this program.
9
+ #
10
+ # Copyright (c) Remedy IT Expertise BV
11
+ # Chamber of commerce Rotterdam nr.276339, The Netherlands
12
+ #--------------------------------------------------------------------
13
+
14
+ # this is simply a fake Windows Ruby Devkit loader to satisfy the stupid
15
+ # pre-install hook provided with RubyInstaller Ruby installations
16
+
17
+ module Kernel
18
+
19
+ alias :r2corba_devkit_load :load
20
+
21
+ def load(file, wrap=false)
22
+ return true if file == 'devkit'
23
+ r2corba_devkit_load(file, wrap)
24
+ end
25
+
26
+ end
metadata ADDED
@@ -0,0 +1,44 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: r2corba_devkit
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Martin Corino
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-02-05 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: 'Fake Devkit loader to satisfy stupid RubyInstaller pre-install hook. '
14
+ email: mcorino@remedy.nl
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - lib/rubygems_plugin.rb
20
+ homepage: https://osportal.remedy.nl/projects/r2corba
21
+ licenses:
22
+ - R2CORBA
23
+ metadata: {}
24
+ post_install_message:
25
+ rdoc_options: []
26
+ require_paths:
27
+ - lib
28
+ required_ruby_version: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 1.9.3
33
+ required_rubygems_version: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - ">="
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ requirements: []
39
+ rubyforge_project:
40
+ rubygems_version: 2.4.5
41
+ signing_key:
42
+ specification_version: 4
43
+ summary: R2CORBA Devkit faker for RubyInstaller Rubies
44
+ test_files: []