biz 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.
Files changed (5) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +31 -0
  3. data/lib/biz.rb +5 -0
  4. data/lib/biz/version.rb +3 -0
  5. metadata +49 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 7ed9d4ce91d53a0f30a134390760ffcf9e7ac335
4
+ data.tar.gz: b0d3f931a675c643e350d41f5305d43d1938ad5c
5
+ SHA512:
6
+ metadata.gz: 59e13d60fa485c816607922bdafa26093c182f9f2609fdfca481e617afdfcd54bab2b2355015f3f6c342183c19fb72e164ecfd6d9f0dadd5e46e16c9fd3aa1b5
7
+ data.tar.gz: 2d0de21b4a82ec4e5f0eec132bf6533c2eba3b6eb575baf2f8a07f098cc3e6941021185f10a68a9996b73ecd956262a9bb210784b1beece02bf741bb37c25ab8
@@ -0,0 +1,31 @@
1
+ # Biz
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'biz'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install biz
20
+
21
+ ## Usage
22
+
23
+ TODO: Write usage instructions here
24
+
25
+ ## Contributing
26
+
27
+ 1. Fork it ( https://github.com/[my-github-username]/biz/fork )
28
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
29
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
30
+ 4. Push to the branch (`git push origin my-new-feature`)
31
+ 5. Create a new Pull Request
@@ -0,0 +1,5 @@
1
+ require "biz/version"
2
+
3
+ module Biz
4
+ # Your code goes here...
5
+ end
@@ -0,0 +1,3 @@
1
+ module Biz
2
+ VERSION = "0.0.1"
3
+ end
metadata ADDED
@@ -0,0 +1,49 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: biz
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Craig Little
8
+ - Alex Stone
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2015-01-07 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: A gem for manipulating time with business hours.
15
+ email:
16
+ - clittle@zendesk.com
17
+ - astone@zendesk.com
18
+ executables: []
19
+ extensions: []
20
+ extra_rdoc_files: []
21
+ files:
22
+ - README.md
23
+ - lib/biz.rb
24
+ - lib/biz/version.rb
25
+ homepage: https://github.com/zendesk/biz
26
+ licenses:
27
+ - Copyright Zendesk. All Rights Reserved.
28
+ metadata: {}
29
+ post_install_message:
30
+ rdoc_options: []
31
+ require_paths:
32
+ - lib
33
+ required_ruby_version: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - ">="
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ required_rubygems_version: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: '0'
43
+ requirements: []
44
+ rubyforge_project:
45
+ rubygems_version: 2.4.5
46
+ signing_key:
47
+ specification_version: 4
48
+ summary: Time calculations with business hours
49
+ test_files: []