Class: Jasmine::CommandLineTool
- Inherits:
-
Object
- Object
- Jasmine::CommandLineTool
- Defined in:
- lib/jasmine/command_line_tool.rb
Instance Method Summary collapse
- #copy_unless_exists(relative_path, dest_path = nil) ⇒ Object
- #cwd ⇒ Object
- #dest_path(filepath) ⇒ Object
- #expand(*paths) ⇒ Object
- #process(argv) ⇒ Object
- #template_path(filepath) ⇒ Object
Instance Method Details
#copy_unless_exists(relative_path, dest_path = nil) ⇒ Object
19 20 21 22 23 |
# File 'lib/jasmine/command_line_tool.rb', line 19 def copy_unless_exists(relative_path, dest_path = nil) unless File.exist?(dest_path(relative_path)) FileUtils.copy(template_path(relative_path), dest_path(dest_path || relative_path)) end end |
#cwd ⇒ Object
3 4 5 |
# File 'lib/jasmine/command_line_tool.rb', line 3 def cwd File.(File.join(File.dirname(__FILE__), '../..')) end |
#dest_path(filepath) ⇒ Object
15 16 17 |
# File 'lib/jasmine/command_line_tool.rb', line 15 def dest_path(filepath) (Dir.pwd, filepath) end |
#expand(*paths) ⇒ Object
7 8 9 |
# File 'lib/jasmine/command_line_tool.rb', line 7 def (*paths) File.(File.join(*paths)) end |
#process(argv) ⇒ Object
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
# File 'lib/jasmine/command_line_tool.rb', line 25 def process(argv) if argv[0] == 'init' require 'fileutils' FileUtils.makedirs('public/javascripts') FileUtils.makedirs('spec/javascripts') FileUtils.makedirs('spec/javascripts/support') FileUtils.makedirs('spec/javascripts/helpers') copy_unless_exists('jasmine-example/src/Player.js', 'public/javascripts/Player.js') copy_unless_exists('jasmine-example/src/Song.js', 'public/javascripts/Song.js') copy_unless_exists('jasmine-example/spec/PlayerSpec.js', 'spec/javascripts/PlayerSpec.js') copy_unless_exists('jasmine-example/spec/SpecHelper.js', 'spec/javascripts/helpers/SpecHelper.js') copy_unless_exists('spec/javascripts/support/jasmine.yml') copy_unless_exists('spec/javascripts/support/jasmine_helper.rb') require 'rake' write_mode = 'w' if File.exist?(dest_path('Rakefile')) load dest_path('Rakefile') write_mode = 'a' end unless Rake::Task.task_defined?('jasmine') File.open(dest_path('Rakefile'), write_mode) do |f| f.write("\n" + File.read(template_path('lib/tasks/jasmine.rake'))) end end File.open(template_path('INSTALL'), 'r').each_line do |line| puts line end elsif argv[0] == "license" puts File.new((cwd, "MIT.LICENSE")).read else puts "unknown command #{argv}" puts "Usage: jasmine init" puts " license" end end |
#template_path(filepath) ⇒ Object
11 12 13 |
# File 'lib/jasmine/command_line_tool.rb', line 11 def template_path(filepath) (cwd, File.join("generators", "jasmine" ,"templates", filepath)) end |