Use simple yaml dump for now

This commit is contained in:
Joshua Peek
2012-07-23 15:05:08 -05:00
parent afedf2557d
commit 314f0e4852
3 changed files with 19968 additions and 20014 deletions

View File

@@ -10,7 +10,7 @@ end
file 'lib/linguist/samples.yml' => Dir['samples/**/*'] do |f|
require 'linguist/samples'
yaml = Linguist::Samples.serialize_to_yaml(Linguist::Samples.data)
yaml = YAML.dump(Linguist::Samples.data)
File.open(f.name, 'w') { |io| io.write yaml }
end