useful_helpers 0.0.19 → 0.0.20

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,12 @@
1
+ # coding: utf-8
2
+ module UsefulHelpers
3
+ module Helpers
4
+ module EditorHelper
5
+ def editor
6
+ render "shared/editor"
7
+ end
8
+
9
+ alias_method :ckeditor, :editor
10
+ end
11
+ end
12
+ end
@@ -1,3 +1,3 @@
1
1
  module UsefulHelpers
2
- VERSION = "0.0.19"
2
+ VERSION = "0.0.20"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: useful_helpers
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.19
4
+ version: 0.0.20
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-07-10 00:00:00.000000000 Z
12
+ date: 2013-07-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -79,8 +79,8 @@ files:
79
79
  - lib/useful_helpers/engine.rb
80
80
  - lib/useful_helpers/helpers.rb
81
81
  - lib/useful_helpers/helpers/browser_helper.rb
82
- - lib/useful_helpers/helpers/ckeditor_helper.rb
83
82
  - lib/useful_helpers/helpers/date_time_helper.rb
83
+ - lib/useful_helpers/helpers/editor_helper.rb
84
84
  - lib/useful_helpers/helpers/formtastic_helper.rb
85
85
  - lib/useful_helpers/helpers/moveable_helper.rb
86
86
  - lib/useful_helpers/helpers/paginate_helper.rb
@@ -1,10 +0,0 @@
1
- # coding: utf-8
2
- module UsefulHelpers
3
- module Helpers
4
- module CkeditorHelper
5
- def ckeditor
6
- render "shared/ckeditor"
7
- end
8
- end
9
- end
10
- end