Sha256: 13de07a93ac770da887fca3b53f7a66b9b79a1a98401e36bd54d10880f340e0d
Contents?: true
Size: 390 Bytes
Versions: 14
Compression:
Stored size: 390 Bytes
Contents
module JupyterOnRails module IRubyKernelExtention class << self attr_accessor :root end def run original = Dir.pwd root = IRubyKernelExtention.root Dir.chdir root app_file = File.expand_path('config/application.rb', root) require app_file Rails.application.require_environment! Dir.chdir original super end end end
Version data entries
14 entries across 14 versions & 1 rubygems