muck-engine 0.1.18 → 0.1.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.18
1
+ 0.1.19
@@ -125,13 +125,6 @@ class MuckCustomFormBuilder < ActionView::Helpers::FormBuilder
125
125
  self.menu_select(method, I18n.t('muck.engine.choose_language'), @languages, options.merge(:prompt => I18n.t('muck.engine.select_language_prompt'), :wrapper_id => 'languages-container'), html_options.merge(:id => 'languages'))
126
126
  end
127
127
 
128
- # creates a select control with languages specific to muck raker. Default id is 'muck_raker_languages'. If 'retain' is passed for the class value the value of this
129
- # control will be written into a cookie with the key 'languages'.
130
- def muck_raker_language_select(method, options = {}, html_options = {}, additional_language = nil)
131
- @languages ||= (additional_language ? [additional_language] : []) + Language.find(:all, :order => 'name asc', :conditions => 'languages.muck_raker_supported = true')
132
- self.menu_select(method, I18n.t('muck.engine.choose_language'), @languages, options.merge(:prompt => I18n.t('muck.engine.select_language_prompt'), :wrapper_id => 'muck_raker_languages-container'), html_options.merge(:id => 'muck_raker_languages'))
133
- end
134
-
135
128
  def get_instance_object_value(field_name)
136
129
  obj = object || @template.instance_variable_get("@#{@object_name}")
137
130
  obj.send(field_name) rescue nil
data/muck-engine.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{muck-engine}
5
- s.version = "0.1.18"
5
+ s.version = "0.1.19"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Justin Ball"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: muck-engine
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.18
4
+ version: 0.1.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Ball