billing_pery 0.3.1 → 0.3.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.
- checksums.yaml +4 -4
- data/README.md +13 -5
- data/billing.gemspec +1 -0
- data/lib/billing/version.rb +1 -1
- metadata +16 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7de4f67b7f8e694dd8cda7c4ec7a975fc872eac8
|
|
4
|
+
data.tar.gz: 37d8149765dcb23e50664a7d507ab1a17cee4558
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3c1c98a2b16c8ea120112ce12d4ba43b4879630d44c60f9dc408fce556c0770a1f56733bc31584c7ac876ef49f7cfd340b0ef2b3ad0836fc261d006b863d046d
|
|
7
|
+
data.tar.gz: c538dae88c6fdbefafd6532c78075a7efb162a3224b7a59f1029e8ef42ca05d1f52a9ca83c11e798946efc9be10587c33d384158e350a6b83a1e55f8b86e2d1a
|
data/README.md
CHANGED
|
@@ -1,25 +1,33 @@
|
|
|
1
1
|
# Billing
|
|
2
2
|
|
|
3
|
-
Welcome to
|
|
3
|
+
Welcome to Billing! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/billing`. To experiment with that code, run `bin/console` for an interactive prompt.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
Add this line to your application's Gemfile:
|
|
8
8
|
|
|
9
9
|
```ruby
|
|
10
|
-
gem '
|
|
10
|
+
gem 'billing_pery', '~> 0.3.1'
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
And then execute:
|
|
14
14
|
|
|
15
|
-
$ bundle
|
|
15
|
+
$ bundle install
|
|
16
16
|
|
|
17
17
|
Or install it yourself as:
|
|
18
18
|
|
|
19
|
-
$ gem install
|
|
19
|
+
$ gem install billing_pery
|
|
20
20
|
|
|
21
21
|
## Usage
|
|
22
22
|
|
|
23
|
+
### Pre-requisites
|
|
24
|
+
|
|
25
|
+
Install the gem 'csvlint'
|
|
26
|
+
|
|
27
|
+
$ gem install
|
|
28
|
+
|
|
29
|
+
$ billing sample-file.csv any_number #=> Example: 9999-8888
|
|
30
|
+
|
|
23
31
|
## Development
|
|
24
32
|
|
|
25
33
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
@@ -28,7 +36,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
|
28
36
|
|
|
29
37
|
## Contributing
|
|
30
38
|
|
|
31
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
|
39
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/perylemke/billing. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
|
32
40
|
|
|
33
41
|
|
|
34
42
|
## License
|
data/billing.gemspec
CHANGED
data/lib/billing/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: billing_pery
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Pery Lemke
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-01-
|
|
11
|
+
date: 2017-01-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -52,6 +52,20 @@ dependencies:
|
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '3.0'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: csvlint
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - "~>"
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: 0.3.3
|
|
62
|
+
type: :development
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - "~>"
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: 0.3.3
|
|
55
69
|
description:
|
|
56
70
|
email:
|
|
57
71
|
- pery.lemke@gmail.com
|