dev-null 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (8) hide show
  1. data/.document +2 -0
  2. data/.gitignore +21 -0
  3. data/NULL +0 -0
  4. data/Rakefile +17 -0
  5. data/VERSION +1 -0
  6. data/dev-null.gemspec +40 -0
  7. /dev/null +19 -0
  8. metadata +61 -0
data/.document ADDED
@@ -0,0 +1,2 @@
1
+ NULL
2
+ lib/**/*.rb
data/.gitignore ADDED
@@ -0,0 +1,21 @@
1
+ ## MAC OS
2
+ .DS_Store
3
+
4
+ ## TEXTMATE
5
+ *.tmproj
6
+ tmtags
7
+
8
+ ## EMACS
9
+ *~
10
+ \#*
11
+ .\#*
12
+
13
+ ## VIM
14
+ *.swp
15
+
16
+ ## PROJECT::GENERAL
17
+ coverage
18
+ rdoc
19
+ pkg
20
+
21
+ ## PROJECT::SPECIFIC
data/NULL ADDED
File without changes
data/Rakefile ADDED
@@ -0,0 +1,17 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+
4
+ begin
5
+ require 'jeweler'
6
+ Jeweler::Tasks.new do |gem|
7
+ gem.name = "dev-null"
8
+ gem.summary = %Q{For all your logging needs}
9
+ gem.description = %Q{For all your logging needs}
10
+ gem.email = "binary42@gmail.com"
11
+ gem.homepage = "http://github.com/binary42/dev-null"
12
+ gem.authors = ["Brian Mitchell"]
13
+ end
14
+ Jeweler::GemcutterTasks.new
15
+ rescue LoadError
16
+ puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
17
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.0
data/dev-null.gemspec ADDED
@@ -0,0 +1,40 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{dev-null}
8
+ s.version = "0.0.0"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Brian Mitchell"]
12
+ s.date = %q{2009-12-11}
13
+ s.description = %q{For all your logging needs}
14
+ s.email = %q{binary42@gmail.com}
15
+ s.files = [
16
+ ".document",
17
+ ".gitignore",
18
+ "NULL",
19
+ "Rakefile",
20
+ "VERSION",
21
+ "dev-null.gemspec",
22
+ "lib/dev/null.rb"
23
+ ]
24
+ s.homepage = %q{http://github.com/binary42/dev-null}
25
+ s.rdoc_options = ["--charset=UTF-8"]
26
+ s.require_paths = ["lib"]
27
+ s.rubygems_version = %q{1.3.5}
28
+ s.summary = %q{For all your logging needs}
29
+
30
+ if s.respond_to? :specification_version then
31
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
32
+ s.specification_version = 3
33
+
34
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
35
+ else
36
+ end
37
+ else
38
+ end
39
+ end
40
+
/dev/null ADDED
@@ -0,0 +1,19 @@
1
+ module Dev; end
2
+ module Dev::Null
3
+ extend self
4
+
5
+ private
6
+
7
+ def method_missing(*)
8
+ self
9
+ end
10
+
11
+ end
12
+
13
+ class Object
14
+
15
+ def null
16
+ Dev::Null
17
+ end
18
+
19
+ end
metadata ADDED
@@ -0,0 +1,61 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dev-null
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Brian Mitchell
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-12-11 00:00:00 -05:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description: For all your logging needs
17
+ email: binary42@gmail.com
18
+ executables: []
19
+
20
+ extensions: []
21
+
22
+ extra_rdoc_files: []
23
+
24
+ files:
25
+ - .document
26
+ - .gitignore
27
+ - "NULL"
28
+ - Rakefile
29
+ - VERSION
30
+ - dev-null.gemspec
31
+ - lib/dev/null.rb
32
+ has_rdoc: true
33
+ homepage: http://github.com/binary42/dev-null
34
+ licenses: []
35
+
36
+ post_install_message:
37
+ rdoc_options:
38
+ - --charset=UTF-8
39
+ require_paths:
40
+ - lib
41
+ required_ruby_version: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: "0"
46
+ version:
47
+ required_rubygems_version: !ruby/object:Gem::Requirement
48
+ requirements:
49
+ - - ">="
50
+ - !ruby/object:Gem::Version
51
+ version: "0"
52
+ version:
53
+ requirements: []
54
+
55
+ rubyforge_project:
56
+ rubygems_version: 1.3.5
57
+ signing_key:
58
+ specification_version: 3
59
+ summary: For all your logging needs
60
+ test_files: []
61
+