lib/helena/survey_importer.rb in helena-1.3.0 vs lib/helena/survey_importer.rb in helena-1.3.1
- old
+ new
@@ -3,10 +3,10 @@
module Helena
class SurveyImporter
attr_accessor :survey
def initialize(yaml_string)
- @parsed = YAML.safe_load yaml_string
+ @parsed = YAML.load yaml_string
create_survey
end
private