Method: Octy::Core#initialize

Defined in:
lib/octy/core.rb

#initializeCore

Returns a new instance of Core.



8
9
10
11
12
13
# File 'lib/octy/core.rb', line 8

def initialize
  options = {
    access_token: ENV['GITHUB_ACCESS_TOKEN']
  }
  @client = Octokit::Client.new(options)
end