it_will_be_mine 0.0.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/README.md +18 -0
- data/lib/it_will_be_mine.rb +6 -0
- metadata +79 -0
data/README.md
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
# It will be mine!
|
2
|
+
|
3
|
+
Determine whether a gem name is available using Ruby.
|
4
|
+
|
5
|
+
```ruby
|
6
|
+
it_will_be_mine?('some_witty_name') # => true
|
7
|
+
it_will_be_mine?('it_will_be_mine') # => false
|
8
|
+
```
|
9
|
+
|
10
|
+
Or if you like:
|
11
|
+
|
12
|
+
```ruby
|
13
|
+
will_it_be_mine?('supercalifragilisticexpialidocious')
|
14
|
+
```
|
15
|
+
|
16
|
+
Be warned, Rubygems may not be too happy if you start DOSing them.
|
17
|
+
|
18
|
+
Twitter: [@cpatuzzo](https://twitter.com/#!/cpatuzzo)
|
metadata
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: it_will_be_mine
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 29
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
- 1
|
10
|
+
version: 0.0.1
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Christopher Patuzzo
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2012-04-29 00:00:00 Z
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
name: rspec
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
none: false
|
25
|
+
requirements:
|
26
|
+
- - ">="
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
hash: 3
|
29
|
+
segments:
|
30
|
+
- 0
|
31
|
+
version: "0"
|
32
|
+
type: :development
|
33
|
+
version_requirements: *id001
|
34
|
+
description: Determine whether a gem name is available using Ruby
|
35
|
+
email: chris.patuzzo@gmail.com
|
36
|
+
executables: []
|
37
|
+
|
38
|
+
extensions: []
|
39
|
+
|
40
|
+
extra_rdoc_files: []
|
41
|
+
|
42
|
+
files:
|
43
|
+
- README.md
|
44
|
+
- lib/it_will_be_mine.rb
|
45
|
+
homepage: https://github.com/cpatuzzo/it_will_be_mine
|
46
|
+
licenses: []
|
47
|
+
|
48
|
+
post_install_message:
|
49
|
+
rdoc_options: []
|
50
|
+
|
51
|
+
require_paths:
|
52
|
+
- lib
|
53
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
54
|
+
none: false
|
55
|
+
requirements:
|
56
|
+
- - ">="
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
hash: 3
|
59
|
+
segments:
|
60
|
+
- 0
|
61
|
+
version: "0"
|
62
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
63
|
+
none: false
|
64
|
+
requirements:
|
65
|
+
- - ">="
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
hash: 3
|
68
|
+
segments:
|
69
|
+
- 0
|
70
|
+
version: "0"
|
71
|
+
requirements: []
|
72
|
+
|
73
|
+
rubyforge_project:
|
74
|
+
rubygems_version: 1.8.22
|
75
|
+
signing_key:
|
76
|
+
specification_version: 3
|
77
|
+
summary: Yes it will, yes it will!
|
78
|
+
test_files: []
|
79
|
+
|