disabled 0.1.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/Rakefile +5 -0
- data/disabled.gemspec +19 -0
- data/ext/disabled/extconf.rb +1 -0
- data/lib/disabled.rb +1 -0
- metadata +70 -0
data/Rakefile
ADDED
data/disabled.gemspec
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Gem::Specification.new do |spec|
|
|
2
|
+
spec.name = 'disabled'
|
|
3
|
+
spec.files = %w[
|
|
4
|
+
Rakefile disabled.gemspec lib/disabled.rb ext/disabled/extconf.rb
|
|
5
|
+
]
|
|
6
|
+
spec.extensions = 'ext/disabled/extconf.rb'
|
|
7
|
+
spec.version = '0.1.1'
|
|
8
|
+
spec.summary = 'This is a placeholder for "ruby --gem=disabled"'
|
|
9
|
+
spec.description = <<-EOS
|
|
10
|
+
This is a placeholder for "ruby --gem=disabled". You should not install this gem.
|
|
11
|
+
|
|
12
|
+
You can not load this gem anyway.
|
|
13
|
+
EOS
|
|
14
|
+
spec.required_ruby_version = '>= 1.9.3'
|
|
15
|
+
spec.author = 'Yuki Sonoda (Yugui)'
|
|
16
|
+
spec.email = 'yugui@yugui.jp'
|
|
17
|
+
spec.homepage = 'http://github.com/yugui/disabled'
|
|
18
|
+
spec.license = %w[ Ruby's CC-BY-3.0 ]
|
|
19
|
+
end
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
raise 'This is just a placeholder for "ruby --gem=disabled". You can not install this gem'
|
data/lib/disabled.rb
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
raise LoadError, "Don't load 'disabled' gem"
|
metadata
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: disabled
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
prerelease: false
|
|
5
|
+
segments:
|
|
6
|
+
- 0
|
|
7
|
+
- 1
|
|
8
|
+
- 1
|
|
9
|
+
version: 0.1.1
|
|
10
|
+
platform: ruby
|
|
11
|
+
authors:
|
|
12
|
+
- Yuki Sonoda (Yugui)
|
|
13
|
+
autorequire:
|
|
14
|
+
bindir: bin
|
|
15
|
+
cert_chain: []
|
|
16
|
+
|
|
17
|
+
date: 2011-02-11 00:00:00 +09:00
|
|
18
|
+
default_executable:
|
|
19
|
+
dependencies: []
|
|
20
|
+
|
|
21
|
+
description: " This is a placeholder for \"ruby --gem=disabled\". You should not install this gem.\n\n You can not load this gem anyway.\n"
|
|
22
|
+
email: yugui@yugui.jp
|
|
23
|
+
executables: []
|
|
24
|
+
|
|
25
|
+
extensions:
|
|
26
|
+
- ext/disabled/extconf.rb
|
|
27
|
+
extra_rdoc_files: []
|
|
28
|
+
|
|
29
|
+
files:
|
|
30
|
+
- Rakefile
|
|
31
|
+
- disabled.gemspec
|
|
32
|
+
- lib/disabled.rb
|
|
33
|
+
- ext/disabled/extconf.rb
|
|
34
|
+
has_rdoc: true
|
|
35
|
+
homepage: http://github.com/yugui/disabled
|
|
36
|
+
licenses:
|
|
37
|
+
- - Ruby's
|
|
38
|
+
- CC-BY-3.0
|
|
39
|
+
post_install_message:
|
|
40
|
+
rdoc_options: []
|
|
41
|
+
|
|
42
|
+
require_paths:
|
|
43
|
+
- lib
|
|
44
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
45
|
+
none: false
|
|
46
|
+
requirements:
|
|
47
|
+
- - ">="
|
|
48
|
+
- !ruby/object:Gem::Version
|
|
49
|
+
segments:
|
|
50
|
+
- 1
|
|
51
|
+
- 9
|
|
52
|
+
- 3
|
|
53
|
+
version: 1.9.3
|
|
54
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
55
|
+
none: false
|
|
56
|
+
requirements:
|
|
57
|
+
- - ">="
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
segments:
|
|
60
|
+
- 0
|
|
61
|
+
version: "0"
|
|
62
|
+
requirements: []
|
|
63
|
+
|
|
64
|
+
rubyforge_project:
|
|
65
|
+
rubygems_version: 1.3.7
|
|
66
|
+
signing_key:
|
|
67
|
+
specification_version: 3
|
|
68
|
+
summary: This is a placeholder for "ruby --gem=disabled"
|
|
69
|
+
test_files: []
|
|
70
|
+
|