aub-payroll 1.0.0 → 1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2746b44a7776165483ba741423c4319b9a9982f8
4
- data.tar.gz: 2b47c4d96ab604f99f689b02def52a5f9fc35a3b
3
+ metadata.gz: c6d3814b0d983cd52c427d8592ad58b580ee3e6c
4
+ data.tar.gz: b874a20303c58268532c25c4890f9907a587d574
5
5
  SHA512:
6
- metadata.gz: 648884471711b6f31f75a9ad728e5621663a88e0b3bf1ec1f1ef1dc6ec451085b54f5380fe5fe648c44fc19bd29a9d95a35bf295d157282f0a9a12e55398f28f
7
- data.tar.gz: 49750767797a8881396e7c482b9dd32b1e6a0c78b78bd95e4fbd5e9529933ad5ae43235f73ba16333c0676e06bbf9d15730327392e26864e493e2af5d8a3a61a
6
+ metadata.gz: 8fc19cfa15587dbe2d91e4cf773ea128845cfa11937cd58f302daf1f22e8db045e9a9f7bc33beb8719d49f50c22cec83edd7e7a7fd61fe18c989ad363ed01404
7
+ data.tar.gz: 40edf85d18d59a000667a8b3f3fcd3462f2ed948da13c1fb1e99eab283c18854d74bf616d02027c80883eb40bb79dbd9ee57eda7580b9667a74cbbef7ee8a96f
@@ -0,0 +1,14 @@
1
+ # Change Log
2
+
3
+ ## [v1.0.0](https://github.com/payrollhero/aub-payroll/tree/v1.0.0) (2016-03-21)
4
+ [Full Changelog](https://github.com/payrollhero/aub-payroll/compare/v0.1.0...v1.0.0)
5
+
6
+ **Merged pull requests:**
7
+
8
+ - Adding summary PDF [\#2](https://github.com/payrollhero/aub-payroll/pull/2) ([piotrb](https://github.com/piotrb))
9
+ - Making EPF File Generation less generically named [\#1](https://github.com/payrollhero/aub-payroll/pull/1) ([piotrb](https://github.com/piotrb))
10
+
11
+ ## [v0.1.0](https://github.com/payrollhero/aub-payroll/tree/v0.1.0) (2015-10-10)
12
+
13
+
14
+ \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
@@ -16,7 +16,7 @@ somewhere in your shell init. (ie .zshrc or simillar)
16
16
 
17
17
  ## Deploying
18
18
 
19
- 1. Update `lib/aub-payroll/version.rb`
19
+ 1. Update `lib/aub/payroll/version.rb`
20
20
  2. Commit the changed files with the version number eg: `1.8.0`
21
21
  3. Push this to git
22
22
  4. Run `rake release`
data/Rakefile CHANGED
@@ -6,3 +6,8 @@ begin
6
6
  task default: :spec
7
7
  rescue LoadError
8
8
  end
9
+
10
+ desc "Updates the changelog"
11
+ task :changelog do
12
+ sh "github_changelog_generator payrollhero/aub-payroll"
13
+ end
@@ -47,7 +47,7 @@ html
47
47
  = '='*20
48
48
 
49
49
  .nothing-follows
50
- ' #{'-'*40} NOTHING FOLLOWS #{'-'*40}
50
+ ' #{'-'*30} NOTHING FOLLOWS #{'-'*30}
51
51
 
52
52
  div.signatures
53
53
  table(cellspacing="0" cellpadding="0")
@@ -1,5 +1,7 @@
1
1
  body {
2
- font-family: monospace;
2
+ $font: "Courier New", courier, monospace;
3
+
4
+ font-family: $font;
3
5
  margin: 0;
4
6
  padding: 0;
5
7
 
@@ -75,7 +77,7 @@ body {
75
77
 
76
78
  th,
77
79
  td {
78
- font-family: monospace;
80
+ font-family: $font;
79
81
  font-size: 10pt;
80
82
  }
81
83
 
@@ -1,5 +1,5 @@
1
1
  module AUB
2
2
  module Payroll
3
- VERSION = '1.0.0'.freeze
3
+ VERSION = '1.0.1'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aub-payroll
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ronald Maravilla
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-03-21 00:00:00.000000000 Z
11
+ date: 2016-03-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -236,6 +236,7 @@ files:
236
236
  - ".rubocop.yml"
237
237
  - ".scss-lint.yml"
238
238
  - ".travis.yml"
239
+ - CHANGELOG.md
239
240
  - CODE_OF_CONDUCT.md
240
241
  - DEPLOYING.md
241
242
  - Gemfile