fusionary-easel_helpers 0.2.17 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -1,9 +1,9 @@
1
1
  require 'rake'
2
2
  require 'rake/testtask'
3
- require 'rake/rdoctask'
3
+ require 'rcov/rcovtask'
4
4
  require 'echoe'
5
5
 
6
- Echoe.new("easel_helpers", "0.2.17") do |p|
6
+ Echoe.new("easel_helpers", "0.3.0") do |p|
7
7
  p.description = "Fusionary Rails View Helpers"
8
8
  p.url = "http://github.com/fusionary/easel_helpers"
9
9
  p.author = "Joshua Clayton"
@@ -12,19 +12,7 @@ Echoe.new("easel_helpers", "0.2.17") do |p|
12
12
  p.development_dependencies = ["actionview >= 2.1.0", "activesupport >= 2.1.0", "hpricot >= 0.8.1"]
13
13
  end
14
14
 
15
- desc 'Test the easel_helpers plugin.'
16
- Rake::TestTask.new(:test) do |t|
17
- t.libs << 'lib'
18
- t.libs << 'test'
19
- t.pattern = 'test/**/*_test.rb'
20
- t.verbose = true
21
- end
22
-
23
- desc 'Generate documentation for the easel_helpers plugin.'
24
- Rake::RDocTask.new(:rdoc) do |rdoc|
25
- rdoc.rdoc_dir = 'rdoc'
26
- rdoc.title = 'Easel-helpers'
27
- rdoc.options << '--line-numbers' << '--inline-source'
28
- rdoc.rdoc_files.include('README')
29
- rdoc.rdoc_files.include('lib/**/*.rb')
15
+ Rcov::RcovTask.new("rcov:current") do |t|
16
+ t.libs << "test"
17
+ t.test_files = FileList['test/*_test.rb']
30
18
  end
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{easel_helpers}
5
- s.version = "0.2.17"
5
+ s.version = "0.3.0"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Joshua Clayton"]
9
- s.date = %q{2009-07-26}
9
+ s.date = %q{2009-08-02}
10
10
  s.description = %q{Fusionary Rails View Helpers}
11
11
  s.email = %q{joshua.clayton@gmail.com}
12
12
  s.extra_rdoc_files = ["lib/easel_helpers/helpers/date_helper.rb", "lib/easel_helpers/helpers/form_helper.rb", "lib/easel_helpers/helpers/grid_helper.rb", "lib/easel_helpers/helpers/jquery_helper.rb", "lib/easel_helpers/helpers/link_helper.rb", "lib/easel_helpers/helpers/message_helper.rb", "lib/easel_helpers/helpers/navigation_helper.rb", "lib/easel_helpers/helpers/rjs_helper.rb", "lib/easel_helpers/helpers/structure_helper.rb", "lib/easel_helpers/helpers/table_helper.rb", "lib/easel_helpers/helpers.rb", "lib/easel_helpers/rails_partial_caching.rb", "lib/easel_helpers.rb", "README.textile", "tasks/easel_helpers_tasks.rake"]
@@ -4,7 +4,7 @@ module ActionView
4
4
 
5
5
  def render_partial_with_easel(*args)
6
6
  path = args.first[:partial]
7
- locals = args.last
7
+ locals = args.last || {}
8
8
 
9
9
  easel_cached_column_counts = session[:easel_cached_column_counts] ||= {}
10
10
 
data/lib/easel_helpers.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  require "hpricot"
2
2
  require "easel_helpers/helpers"
3
- require "easel_helpers/rails_partial_caching"
3
+ require "easel_helpers/rails_partial_caching"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fusionary-easel_helpers
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.17
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joshua Clayton
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-07-26 00:00:00 -07:00
12
+ date: 2009-08-02 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -107,6 +107,7 @@ files:
107
107
  - test/test_helper.rb
108
108
  has_rdoc: true
109
109
  homepage: http://github.com/fusionary/easel_helpers
110
+ licenses:
110
111
  post_install_message:
111
112
  rdoc_options:
112
113
  - --line-numbers
@@ -132,7 +133,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
132
133
  requirements: []
133
134
 
134
135
  rubyforge_project: easel_helpers
135
- rubygems_version: 1.2.0
136
+ rubygems_version: 1.3.5
136
137
  signing_key:
137
138
  specification_version: 3
138
139
  summary: Fusionary Rails View Helpers