Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap-rubygem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tasks
diff options
context:
space:
mode:
authorJan Stevens <jan@playpass.be>2015-08-19 22:31:42 +0300
committerJan Stevens <jan@playpass.be>2015-08-19 22:31:42 +0300
commit87f5781066b9f02afb4fced760bb0cfb6a22ccc5 (patch)
treedf8ec96014ecc20537b2894316957fde83b8eadb /tasks
parent73b09125b3eb6931e01e7ed3da8e5e9bde65ad86 (diff)
Removed the font converter since bootstrap does not include a custom font anymore
Diffstat (limited to 'tasks')
-rw-r--r--tasks/converter/fonts_conversion.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/tasks/converter/fonts_conversion.rb b/tasks/converter/fonts_conversion.rb
deleted file mode 100644
index 6304f80..0000000
--- a/tasks/converter/fonts_conversion.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-class Converter
- module FontsConversion
- def process_font_assets
- log_status 'Processing fonts...'
- files = read_files('fonts', bootstrap_font_files)
- save_to = @save_to[:fonts]
- files.each do |name, content|
- save_file "#{save_to}/#{name}", content
- end
- end
-
- def bootstrap_font_files
- @bootstrap_font_files ||= get_paths_by_type('fonts', /\.(eot|svg|ttf|woff2?)$/)
- end
- end
-end