aboutsummaryrefslogtreecommitdiff
path: root/docs/build/node_modules/hogan.js/test/spec/Rakefile
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-02-12 12:25:05 -0800
committerMark Otto <[email protected]>2013-02-12 12:25:05 -0800
commit8b9733b288a3daca0da04fe60e0b5a0ae8681362 (patch)
treeb3b84c413ec1e6c1282b01a2923372743948f4b9 /docs/build/node_modules/hogan.js/test/spec/Rakefile
parent5de8557398ec862ab94f48dc081865d8223de1cf (diff)
downloadbootstrap-8b9733b288a3daca0da04fe60e0b5a0ae8681362.tar.xz
bootstrap-8b9733b288a3daca0da04fe60e0b5a0ae8681362.zip
nuke what we don't need for jekyll
Diffstat (limited to 'docs/build/node_modules/hogan.js/test/spec/Rakefile')
-rw-r--r--docs/build/node_modules/hogan.js/test/spec/Rakefile27
1 files changed, 0 insertions, 27 deletions
diff --git a/docs/build/node_modules/hogan.js/test/spec/Rakefile b/docs/build/node_modules/hogan.js/test/spec/Rakefile
deleted file mode 100644
index 5254ce65a..000000000
--- a/docs/build/node_modules/hogan.js/test/spec/Rakefile
+++ /dev/null
@@ -1,27 +0,0 @@
-require 'json'
-require 'yaml'
-
-# Our custom YAML tags must retain their magic.
-%w[ code ].each do |tag|
- YAML::add_builtin_type(tag) { |_,val| val.merge(:__tag__ => tag) }
-end
-
-desc 'Build all alternate versions of the specs.'
-multitask :build => [ 'build:json' ]
-
-namespace :build do
- note = 'Do not edit this file; changes belong in the appropriate YAML file.'
-
- desc 'Build JSON versions of the specs.'
- task :json do
- rm(Dir['specs/*.json'], :verbose => false)
- Dir.glob('specs/*.yml').each do |filename|
- json_file = filename.gsub('.yml', '.json')
-
- File.open(json_file, 'w') do |file|
- doc = YAML.load_file(filename)
- file << doc.merge(:__ATTN__ => note).to_json()
- end
- end
- end
-end