bookyt_salary 0.2.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- data/app/views/salaries/show.html.haml +1 -1
- data/db/seeds.rb +2 -2
- data/lib/bookyt_salary/version.rb +1 -1
- metadata +42 -20
@@ -1,6 +1,6 @@
|
|
1
1
|
.contextual
|
2
2
|
= icon_link_to :pdf, :format => :pdf
|
3
|
-
= icon_link_to(:payslip, {:action => :payslip, :format => :pdf, :target => '_blank'
|
3
|
+
= icon_link_to(:payslip, {:action => :payslip, :format => :pdf}, :target => '_blank')
|
4
4
|
= contextual_links_for
|
5
5
|
|
6
6
|
%h1= resource.title
|
data/db/seeds.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# Salaries
|
2
2
|
# ========
|
3
|
-
outside_capital = AccountType.
|
4
|
-
costs = AccountType.
|
3
|
+
outside_capital = AccountType.find_by_name('outside_capital')
|
4
|
+
costs = AccountType.find_by_name('costs')
|
5
5
|
|
6
6
|
# Accounts
|
7
7
|
Account.create!([
|
metadata
CHANGED
@@ -1,22 +1,33 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: bookyt_salary
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
prerelease:
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 17
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 2
|
9
|
+
- 3
|
10
|
+
version: 0.2.3
|
6
11
|
platform: ruby
|
7
|
-
authors:
|
8
|
-
- Simon
|
12
|
+
authors:
|
13
|
+
- "Simon H\xC3\xBCrlimann (CyT)"
|
9
14
|
autorequire:
|
10
15
|
bindir: bin
|
11
16
|
cert_chain: []
|
12
|
-
|
17
|
+
|
18
|
+
date: 2011-11-04 00:00:00 +01:00
|
19
|
+
default_executable:
|
13
20
|
dependencies: []
|
21
|
+
|
14
22
|
description: This plugin extends bookyt with Salary functionality.
|
15
23
|
email: simon.huerlimann@cyt.ch
|
16
24
|
executables: []
|
25
|
+
|
17
26
|
extensions: []
|
27
|
+
|
18
28
|
extra_rdoc_files: []
|
19
|
-
|
29
|
+
|
30
|
+
files:
|
20
31
|
- app/assets/stylesheets/bookyt_salary.sass
|
21
32
|
- app/controllers/salaries_controller.rb
|
22
33
|
- app/models/salary.rb
|
@@ -34,28 +45,39 @@ files:
|
|
34
45
|
- lib/bookyt_salary/navigation.rb
|
35
46
|
- lib/bookyt_salary/railtie.rb
|
36
47
|
- lib/bookyt_salary/version.rb
|
48
|
+
has_rdoc: true
|
37
49
|
homepage: https://github.com/huerlisi/bookyt_salary
|
38
50
|
licenses: []
|
51
|
+
|
39
52
|
post_install_message:
|
40
53
|
rdoc_options: []
|
41
|
-
|
54
|
+
|
55
|
+
require_paths:
|
42
56
|
- lib
|
43
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
57
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
44
58
|
none: false
|
45
|
-
requirements:
|
46
|
-
- -
|
47
|
-
- !ruby/object:Gem::Version
|
48
|
-
|
49
|
-
|
59
|
+
requirements:
|
60
|
+
- - ">="
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
hash: 3
|
63
|
+
segments:
|
64
|
+
- 0
|
65
|
+
version: "0"
|
66
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
50
67
|
none: false
|
51
|
-
requirements:
|
52
|
-
- -
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
|
68
|
+
requirements:
|
69
|
+
- - ">="
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
hash: 3
|
72
|
+
segments:
|
73
|
+
- 0
|
74
|
+
version: "0"
|
55
75
|
requirements: []
|
76
|
+
|
56
77
|
rubyforge_project:
|
57
|
-
rubygems_version: 1.
|
78
|
+
rubygems_version: 1.3.7
|
58
79
|
signing_key:
|
59
80
|
specification_version: 3
|
60
81
|
summary: Salary plugin for bookyt
|
61
82
|
test_files: []
|
83
|
+
|