Tagged Questions
The to-yaml tag has no wiki summary.
4
votes
1answer
539 views
How to get the formatting options for the to_yaml method working on ruby 1.9.1?
According to the YAML documentation it's possible to pass a hash of options to the .to_yaml method.
Currently when I pass the options as suggested by the documentation it's not working, the hash is ...
2
votes
1answer
174 views
In ruby-on-rails, how to convert the '\X93' like string format to its original look?
s = "你好"
s.encoding # => #<Encoding:UTF-8>
yaml = s.to_yaml # => "--- \"\\xE4\\xBD\\xA0\\xE5\\xA5\\xBD\"\n"
yaml.encoding # => #<Encoding:ASCII-8BIT>
...
1
vote
0answers
103 views
Depth limited pp or to_yaml in ruby
Can I limit the recursion depth of PP.pp or to_yaml in Ruby?
If not is there another function I can use?
0
votes
0answers
158 views
how to export my ruby on rails application data into a zip file with all attachments and yaml files
im trying to backup my ruby on rails instance as a zip file with yaml files and other attachments in a zip folder. How can i do this?
0
votes
3answers
2k views
Ruby to_yaml utf8 string
How can I make ruby to_yaml method to store utf8 strings with original signs but not escape sequence?