Method: Docurium::CLI.gen
- Defined in:
- lib/docurium/cli.rb
.gen(file) ⇒ Object
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# File 'lib/docurium/cli.rb', line 14 def self.gen(file) temp = <<-TEMPLATE { "name": "project", "github": "user/project", "input": "include/lib", "prefix": "lib_", "branch": "gh-pages" } TEMPLATE puts "Writing to #{file}" File.open(file, 'w+') do |f| f.write(temp) end end |