aub-payroll 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +14 -0
- data/DEPLOYING.md +1 -1
- data/Rakefile +5 -0
- data/lib/aub/payroll/summary_file/templates/body.slim +1 -1
- data/lib/aub/payroll/summary_file/templates/style.scss +4 -2
- data/lib/aub/payroll/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c6d3814b0d983cd52c427d8592ad58b580ee3e6c
|
4
|
+
data.tar.gz: b874a20303c58268532c25c4890f9907a587d574
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8fc19cfa15587dbe2d91e4cf773ea128845cfa11937cd58f302daf1f22e8db045e9a9f7bc33beb8719d49f50c22cec83edd7e7a7fd61fe18c989ad363ed01404
|
7
|
+
data.tar.gz: 40edf85d18d59a000667a8b3f3fcd3462f2ed948da13c1fb1e99eab283c18854d74bf616d02027c80883eb40bb79dbd9ee57eda7580b9667a74cbbef7ee8a96f
|
data/CHANGELOG.md
ADDED
@@ -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)*
|
data/DEPLOYING.md
CHANGED
@@ -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
|
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
@@ -1,5 +1,7 @@
|
|
1
1
|
body {
|
2
|
-
font
|
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:
|
80
|
+
font-family: $font;
|
79
81
|
font-size: 10pt;
|
80
82
|
}
|
81
83
|
|
data/lib/aub/payroll/version.rb
CHANGED
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.
|
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-
|
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
|