Class: Bl::Wiki

Inherits:
Command show all
Defined in:
lib/bl/wiki.rb

Instance Method Summary collapse

Methods included from Printer

print_response, printable_issues

Methods included from Formatting

colorize_priority, colorize_status, colorize_type

Methods included from Requestable

client, formatter, request

Constructor Details

#initializeWiki

Returns a new instance of Wiki.



4
5
6
7
8
# File 'lib/bl/wiki.rb', line 4

def initialize(*)
  @config = Bl::Config.instance
  @url = 'wikis'
  super
end

Instance Method Details

#edit(id) ⇒ Object



29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/bl/wiki.rb', line 29

def edit(id)
  wiki_content = request(:get, "#{@url}/#{id}").body.content
  file = Tempfile.new
  file.puts(wiki_content)
  file.close
  begin
    file.open
    system("$EDITOR #{file.path}")
    new_content = file.read
    request(:patch, "#{@url}/#{id}", content: new_content)
    puts "wiki #{id} updated."
  ensure
    file.close
    file.unlink
  end
end

#listObject



11
12
13
14
# File 'lib/bl/wiki.rb', line 11

def list
  res = request(:get, @url, projectIdOrKey: @config[:project_key])
  puts formatter.render(res.body, fields: WIKI_FIELDS)
end

#show(id) ⇒ Object



17
18
19
20
21
22
23
24
25
26
# File 'lib/bl/wiki.rb', line 17

def show(id)
  body = request(:get, "#{@url}/#{id}").body
  puts "id: #{body.id}"
  puts "projectId: #{body.projectId}"
  puts "name: #{body.name}"
  puts "updated: #{body.updated}"
  puts '--'
  puts 'content:'
  puts body.content
end