Class: Turbulence::CommandLineInterface
- Inherits:
-
Object
- Object
- Turbulence::CommandLineInterface
- Extended by:
- Forwardable
- Defined in:
- lib/turbulence/cli_parser.rb,
lib/turbulence/command_line_interface.rb
Defined Under Namespace
Modules: ConfigParser
Constant Summary collapse
- TURBULENCE_TEMPLATE_PATH =
File.join(File.(File.dirname(__FILE__)), "..", "..", "template")
- TEMPLATE_FILES =
[ 'turbulence.html', 'highcharts.js', 'jquery.min.js', 'treemap.html', ].map do |filename| File.join(TURBULENCE_TEMPLATE_PATH, filename) end
Instance Method Summary collapse
- #copy_templates_into(directory) ⇒ Object
- #generate_bundle ⇒ Object
-
#initialize(argv, additional_options = {}) ⇒ CommandLineInterface
constructor
A new instance of CommandLineInterface.
- #open_bundle ⇒ Object
- #output_path ⇒ Object
Constructor Details
#initialize(argv, additional_options = {}) ⇒ CommandLineInterface
Returns a new instance of CommandLineInterface.
23 24 25 26 |
# File 'lib/turbulence/command_line_interface.rb', line 23 def initialize(argv, = {}) ConfigParser.parse_argv_into_config argv, config config.output = .fetch(:output, STDOUT) end |
Instance Method Details
#copy_templates_into(directory) ⇒ Object
42 43 44 |
# File 'lib/turbulence/command_line_interface.rb', line 42 def copy_templates_into(directory) FileUtils.cp TEMPLATE_FILES, directory end |
#generate_bundle ⇒ Object
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
# File 'lib/turbulence/command_line_interface.rb', line 46 def generate_bundle FileUtils.mkdir_p(output_path) Dir.chdir(output_path) do turb = Turbulence.new(config) generator = case graph_type when "treemap" Turbulence::Generators::TreeMap.new({}) else Turbulence::Generators::ScatterPlot.new({}) end generator.generate_results(turb.metrics, self) end end |
#open_bundle ⇒ Object
63 64 65 |
# File 'lib/turbulence/command_line_interface.rb', line 63 def open_bundle Launchy.open("file:///#{output_path}/#{graph_type}.html") end |
#output_path ⇒ Object
38 39 40 |
# File 'lib/turbulence/command_line_interface.rb', line 38 def output_path output_dir || File.join(Dir.pwd, "turbulence") end |