acme-leeway 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.
- checksums.yaml +7 -0
- data/.gitignore +19 -0
- data/Gemfile +3 -0
- data/README.md +30 -0
- data/Rakefile +1 -0
- data/acme-leeway.gemspec +24 -0
- data/lib/acme/leeway.rb +11 -0
- data/lib/acme/leeway/version.rb +5 -0
- metadata +81 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 84c5c8be297a615188f6371cb0e318e0d370a048
|
4
|
+
data.tar.gz: 0c20b5fdb54a3489699963b6042289fd0d008185
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: a8694050f87d9b25e818640dfe446af512b8c38491c287a3d1b34e334eea0262c9da6f752e45d4f0f8c618a771a219985efc8b344cd18573190596415bf11740
|
7
|
+
data.tar.gz: 8ab0cfede75c42a8f289697493ff563715be3d68040fc24c300ec7e68fc67a30b989dfc2e15ba1b09b3716af3656c20fc135e1280108ec74d43d55cb2fcec3d3
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/README.md
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
# Acme::Leeway
|
2
|
+
|
3
|
+
Numbers seem a little more impressive, provided a little leeway.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Install it with:
|
8
|
+
|
9
|
+
$ gem install acme-leeway
|
10
|
+
|
11
|
+
## Usage
|
12
|
+
|
13
|
+
No one will know you fudged the numbers:
|
14
|
+
|
15
|
+
[7] pry(main)> 73.inspect
|
16
|
+
=> "133"
|
17
|
+
[8] pry(main)> 73.inspect
|
18
|
+
=> "111"
|
19
|
+
[9] pry(main)> 73.inspect
|
20
|
+
=> "111"
|
21
|
+
[10] pry(main)> 73.inspect
|
22
|
+
=> "81"
|
23
|
+
|
24
|
+
## Contributing
|
25
|
+
|
26
|
+
1. Fork it
|
27
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
28
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
29
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
30
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/acme-leeway.gemspec
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'acme/leeway/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "acme-leeway"
|
8
|
+
spec.version = Acme::Leeway::VERSION
|
9
|
+
spec.authors = ["Tad Hosford"]
|
10
|
+
spec.email = ["tad.hosford@gmail.com"]
|
11
|
+
spec.description = %q{ Sometimes the real numbers just aren't good enough.
|
12
|
+
Require this module and make every number you inspect
|
13
|
+
appear just a bit more impressive.
|
14
|
+
}
|
15
|
+
spec.summary = %q{ If only my wallet worked this way. }
|
16
|
+
spec.homepage = "https://github.com/rthbound/acme-leeway"
|
17
|
+
spec.license = "MIT"
|
18
|
+
|
19
|
+
spec.files = `git ls-files`.split($/)
|
20
|
+
spec.require_paths = ["lib"]
|
21
|
+
|
22
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
23
|
+
spec.add_development_dependency "rake"
|
24
|
+
end
|
data/lib/acme/leeway.rb
ADDED
metadata
ADDED
@@ -0,0 +1,81 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: acme-leeway
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Tad Hosford
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-05-05 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.3'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
description: " Sometimes the real numbers just aren't good enough.\n Require
|
42
|
+
this module and make every number you inspect\n appear
|
43
|
+
just a bit more impressive.\n "
|
44
|
+
email:
|
45
|
+
- tad.hosford@gmail.com
|
46
|
+
executables: []
|
47
|
+
extensions: []
|
48
|
+
extra_rdoc_files: []
|
49
|
+
files:
|
50
|
+
- .gitignore
|
51
|
+
- Gemfile
|
52
|
+
- README.md
|
53
|
+
- Rakefile
|
54
|
+
- acme-leeway.gemspec
|
55
|
+
- lib/acme/leeway.rb
|
56
|
+
- lib/acme/leeway/version.rb
|
57
|
+
homepage: https://github.com/rthbound/acme-leeway
|
58
|
+
licenses:
|
59
|
+
- MIT
|
60
|
+
metadata: {}
|
61
|
+
post_install_message:
|
62
|
+
rdoc_options: []
|
63
|
+
require_paths:
|
64
|
+
- lib
|
65
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - '>='
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0'
|
70
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - '>='
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '0'
|
75
|
+
requirements: []
|
76
|
+
rubyforge_project:
|
77
|
+
rubygems_version: 2.0.0.rc.2
|
78
|
+
signing_key:
|
79
|
+
specification_version: 4
|
80
|
+
summary: If only my wallet worked this way.
|
81
|
+
test_files: []
|