it-logica-application-backbone 1.0.8 → 1.0.9

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.8
1
+ 1.0.9
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "it-logica-application-backbone"
8
- s.version = "1.0.8"
8
+ s.version = "1.0.9"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Ladas"]
12
- s.date = "2012-08-03"
12
+ s.date = "2012-08-06"
13
13
  s.description = "longer description of your gem"
14
14
  s.email = "ladislav.smola@it-logica.cz"
15
15
  s.extra_rdoc_files = [
@@ -96,10 +96,23 @@ module ModelMixins
96
96
  attrs = i.attributes
97
97
  another_global_formats.each do |another_global_format|
98
98
  # todo udelat moznost predani dalsich parametru
99
- attrs.merge!({"#{another_global_format[:table]}_#{another_global_format[:name]}" => i.send(another_global_format[:global_format_method].to_sym, attrs["#{another_global_format[:table]}_#{another_global_format[:name]}"])})
99
+ case another_global_format[:table]
100
+ when "___sql_expression___"
101
+ col_name = "#{another_global_format[:name]}"
102
+ else
103
+ col_name = "#{another_global_format[:table]}_#{another_global_format[:name]}"
104
+ end
105
+ attrs.merge!({col_name => i.send(another_global_format[:global_format_method].to_sym, col_name)})
100
106
  end
101
107
  another_formats.each do |another_format|
102
- attrs.merge!({"#{another_format[:table]}_#{another_format[:name]}" => i.send(another_format[:format_method].to_sym, attrs["#{another_format[:table]}_#{another_format[:name]}"])})
108
+ case another_format[:table]
109
+ when "___sql_expression___"
110
+ col_name = "#{another_format[:name]}"
111
+ else
112
+ col_name = "#{another_format[:table]}_#{another_format[:name]}"
113
+ end
114
+
115
+ attrs.merge!({col_name => i.send(another_format[:format_method].to_sym, col_name)})
103
116
  end
104
117
  column_methods.each do |column_method|
105
118
  another_column_row = "-"
@@ -220,7 +233,7 @@ module ModelMixins
220
233
  end
221
234
  end
222
235
 
223
- # ToDO ladas add number filter
236
+
224
237
  # ToDo ladas add having condition to others
225
238
  if !params.blank? && params['multichoice']
226
239
  params['multichoice'].each_pair do |i, v|
@@ -31,7 +31,7 @@ class TableSettings
31
31
  ##
32
32
  # Defines select expression for column (ie. select count(id) as counter)
33
33
  #
34
- def sql_expresssion(expression)
34
+ def sql_expression(expression)
35
35
  @column_hash[:sql_expression] = expression
36
36
  self
37
37
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: it-logica-application-backbone
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.8
4
+ version: 1.0.9
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-08-03 00:00:00.000000000 Z
12
+ date: 2012-08-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: htmlentities
16
- requirement: &75607660 !ruby/object:Gem::Requirement
16
+ requirement: &86421990 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: '0'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *75607660
24
+ version_requirements: *86421990
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: shoulda
27
- requirement: &75007460 !ruby/object:Gem::Requirement
27
+ requirement: &86421720 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,10 +32,10 @@ dependencies:
32
32
  version: '0'
33
33
  type: :development
34
34
  prerelease: false
35
- version_requirements: *75007460
35
+ version_requirements: *86421720
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: rdoc
38
- requirement: &75007180 !ruby/object:Gem::Requirement
38
+ requirement: &86420930 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - ~>
@@ -43,10 +43,10 @@ dependencies:
43
43
  version: '3.12'
44
44
  type: :development
45
45
  prerelease: false
46
- version_requirements: *75007180
46
+ version_requirements: *86420930
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: bundler
49
- requirement: &75006900 !ruby/object:Gem::Requirement
49
+ requirement: &86419830 !ruby/object:Gem::Requirement
50
50
  none: false
51
51
  requirements:
52
52
  - - ~>
@@ -54,10 +54,10 @@ dependencies:
54
54
  version: 1.1.0
55
55
  type: :development
56
56
  prerelease: false
57
- version_requirements: *75006900
57
+ version_requirements: *86419830
58
58
  - !ruby/object:Gem::Dependency
59
59
  name: jeweler
60
- requirement: &75006600 !ruby/object:Gem::Requirement
60
+ requirement: &86418420 !ruby/object:Gem::Requirement
61
61
  none: false
62
62
  requirements:
63
63
  - - ~>
@@ -65,10 +65,10 @@ dependencies:
65
65
  version: 1.8.4
66
66
  type: :development
67
67
  prerelease: false
68
- version_requirements: *75006600
68
+ version_requirements: *86418420
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: simplecov
71
- requirement: &75006300 !ruby/object:Gem::Requirement
71
+ requirement: &86418080 !ruby/object:Gem::Requirement
72
72
  none: false
73
73
  requirements:
74
74
  - - ! '>='
@@ -76,7 +76,7 @@ dependencies:
76
76
  version: '0'
77
77
  type: :development
78
78
  prerelease: false
79
- version_requirements: *75006300
79
+ version_requirements: *86418080
80
80
  description: longer description of your gem
81
81
  email: ladislav.smola@it-logica.cz
82
82
  executables: []
@@ -570,7 +570,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
570
570
  version: '0'
571
571
  segments:
572
572
  - 0
573
- hash: -477704751
573
+ hash: -505696493
574
574
  required_rubygems_version: !ruby/object:Gem::Requirement
575
575
  none: false
576
576
  requirements: