clarence 0.0.1987 → 0.1987.0

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -2,3 +2,4 @@
2
2
  .bundle
3
3
  Gemfile.lock
4
4
  pkg/*
5
+ *.swp
@@ -0,0 +1 @@
1
+ ![Clarence J. Boddicker](https://github.com/dylanegan/clarence/raw/master/clarence.jpg)
Binary file
@@ -1,5 +1,9 @@
1
1
  class Bitches
2
- def self.leave!
3
- exit!
2
+ def self.leave!(status = false)
3
+ exit!(status)
4
+ end
5
+
6
+ def self.leave(status = true)
7
+ exit(status)
4
8
  end
5
9
  end
@@ -1,3 +1,3 @@
1
1
  module Clarence
2
- VERSION = "0.0.1987"
2
+ VERSION = "0.1987.0"
3
3
  end
@@ -0,0 +1,6 @@
1
+ $:.unshift File.join(File.dirname(__FILE__), '..', 'lib')
2
+
3
+ require 'clarence'
4
+
5
+ warn "Thank you for your concerns, but Clarence doesn't like to test. Have a nice day."
6
+ Bitches.leave
@@ -0,0 +1,6 @@
1
+ $:.unshift File.join(File.dirname(__FILE__), '..', 'lib')
2
+
3
+ require 'clarence'
4
+
5
+ warn "CLARENCE DOESN'T NEED TO TEST"
6
+ Bitches.leave!
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: clarence
3
3
  version: !ruby/object:Gem::Version
4
- hash: 3993
4
+ hash: 7955
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
- - 0
9
8
  - 1987
10
- version: 0.0.1987
9
+ - 0
10
+ version: 0.1987.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Dylan Egan
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-03-10 00:00:00 -08:00
18
+ date: 2011-03-12 00:00:00 -08:00
19
19
  default_executable:
20
20
  dependencies: []
21
21
 
@@ -31,11 +31,15 @@ extra_rdoc_files: []
31
31
  files:
32
32
  - .gitignore
33
33
  - Gemfile
34
+ - README.md
34
35
  - Rakefile
35
36
  - clarence.gemspec
37
+ - clarence.jpg
36
38
  - lib/clarence.rb
37
39
  - lib/clarence/bitches.rb
38
40
  - lib/clarence/version.rb
41
+ - test/clarence_polite_test.rb
42
+ - test/clarence_test.rb
39
43
  has_rdoc: true
40
44
  homepage: https://github.com/dylanegan/clarence
41
45
  licenses: []
@@ -70,5 +74,6 @@ rubygems_version: 1.3.7
70
74
  signing_key:
71
75
  specification_version: 3
72
76
  summary: Get some Clarence J. Boddicker in your Ruby.
73
- test_files: []
74
-
77
+ test_files:
78
+ - test/clarence_polite_test.rb
79
+ - test/clarence_test.rb