bobbit 0.0.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/.gitignore ADDED
@@ -0,0 +1,4 @@
1
+ *.gem
2
+ .bundle
3
+ Gemfile.lock
4
+ pkg/*
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in bobbit.gemspec
4
+ gemspec
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require 'bundler/gem_tasks'
data/bin/snip ADDED
@@ -0,0 +1,7 @@
1
+ require 'bobbit'
2
+
3
+ def snip
4
+ Bobbit.cut
5
+ end
6
+
7
+ snip
data/bobbit.gemspec ADDED
@@ -0,0 +1,21 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "bobbit/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "bobbit"
7
+ s.version = Bobbit::VERSION
8
+ s.authors = ["Mike Benner"]
9
+ s.email = ["me@mikebenner.com"]
10
+ s.homepage = "http://mikebenner.com"
11
+ s.summary = %q{Taking the Dicks Gem to another level}
12
+ s.description = %q{Someone had to do it.}
13
+
14
+ s.rubyforge_project = "bobbit"
15
+
16
+ s.files = `git ls-files`.split("\n")
17
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
18
+ s.executables = 'snip'
19
+ s.default_executable = 'snip'
20
+ s.require_paths = ["lib"]
21
+ end
@@ -0,0 +1,3 @@
1
+ module Bobbit
2
+ VERSION = "0.0.2"
3
+ end
data/lib/bobbit.rb ADDED
@@ -0,0 +1,7 @@
1
+ require "bobbit/version"
2
+
3
+ module Bobbit
4
+ def self.cut
5
+ puts "8=== =D"
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,74 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bobbit
3
+ version: !ruby/object:Gem::Version
4
+ hash: 27
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 2
10
+ version: 0.0.2
11
+ platform: ruby
12
+ authors:
13
+ - Mike Benner
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2011-06-21 00:00:00 -07:00
19
+ default_executable: snip
20
+ dependencies: []
21
+
22
+ description: Someone had to do it.
23
+ email:
24
+ - me@mikebenner.com
25
+ executables:
26
+ - snip
27
+ extensions: []
28
+
29
+ extra_rdoc_files: []
30
+
31
+ files:
32
+ - .gitignore
33
+ - Gemfile
34
+ - Rakefile
35
+ - bobbit.gemspec
36
+ - lib/bobbit.rb
37
+ - lib/bobbit/version.rb
38
+ - bin/snip
39
+ has_rdoc: true
40
+ homepage: http://mikebenner.com
41
+ licenses: []
42
+
43
+ post_install_message:
44
+ rdoc_options: []
45
+
46
+ require_paths:
47
+ - lib
48
+ required_ruby_version: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ hash: 3
54
+ segments:
55
+ - 0
56
+ version: "0"
57
+ required_rubygems_version: !ruby/object:Gem::Requirement
58
+ none: false
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ hash: 3
63
+ segments:
64
+ - 0
65
+ version: "0"
66
+ requirements: []
67
+
68
+ rubyforge_project: bobbit
69
+ rubygems_version: 1.6.2
70
+ signing_key:
71
+ specification_version: 3
72
+ summary: Taking the Dicks Gem to another level
73
+ test_files: []
74
+