aboutsummaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2012-07-23 15:05:08 -0500
committerJoshua Peek <josh@joshpeek.com>2012-07-23 15:05:08 -0500
commit314f0e485227915931db361be14d308a210bedea (patch)
tree49969413d6ea7610f900fa4393bd28a12ac0ab87 /Rakefile
parentafedf2557d581480ff41d7b353f701aa6f2d3304 (diff)
Use simple yaml dump for now
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 18e395a..782e6d9 100644
--- a/Rakefile
+++ b/Rakefile
@@ -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