cheveret 2.0.0.rc3 → 2.0.0.rc4

Sign up to get free protection for your applications and to get access to all the features.
data/cheveret.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{cheveret}
8
- s.version = "2.0.0.rc3"
8
+ s.version = "2.0.0.rc4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Ben Caldwell"]
12
- s.date = %q{2010-10-05}
12
+ s.date = %q{2010-10-06}
13
13
  s.description = %q{Generating HTML tables of data in the views of your Rails
14
14
  application is not very DRY even for the simpler of cases. Cheveret allows you to more
15
15
  clearly separate logic and templating and reduce the amount of code in your views.}
@@ -23,7 +23,7 @@
23
23
 
24
24
  module Cheveret
25
25
  class Column
26
- attr_accessor :name, :data, :label, :weight, :width
26
+ attr_accessor :name, :data, :label, :hint, :weight, :width
27
27
  attr_accessor :flexible, :sortable
28
28
 
29
29
  def initialize(name, config={})
@@ -34,11 +34,10 @@ module Cheveret
34
34
  def header(options={})
35
35
  row = @columns.values.map do |column|
36
36
  cell(:th, column) do
37
- if column.sortable? # todo: abstract out sortable stuff
38
- content_tag(:a, column.label)
39
- else
40
- content_tag(:span, column.label)
41
- end
37
+ type = column.sortable? ? :a : :span
38
+ content_tag(type, column.label, {
39
+ :title => column.hint,
40
+ })
42
41
  end
43
42
  end
44
43
 
@@ -26,7 +26,7 @@ module Cheveret
26
26
  MAJOR = 2
27
27
  MINOR = 0
28
28
  PATCH = 0
29
- BUILD = 'rc3'
29
+ BUILD = 'rc4'
30
30
 
31
31
  STRING = [ MAJOR, MINOR, PATCH, BUILD ].join('.')
32
32
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cheveret
3
3
  version: !ruby/object:Gem::Version
4
- hash: 977940588
4
+ hash: 977940589
5
5
  prerelease: true
6
6
  segments:
7
7
  - 2
8
8
  - 0
9
9
  - 0
10
- - rc3
11
- version: 2.0.0.rc3
10
+ - rc4
11
+ version: 2.0.0.rc4
12
12
  platform: ruby
13
13
  authors:
14
14
  - Ben Caldwell
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2010-10-05 00:00:00 +11:00
19
+ date: 2010-10-06 00:00:00 +11:00
20
20
  default_executable:
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency