example/students_1/students.rb in lorj-1.0.1 vs example/students_1/students.rb in lorj-1.0.2
- old
+ new
@@ -13,17 +13,23 @@
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
+if ENV['BYEBUG']
+ require 'byebug'
+ lib_path = File.expand_path(File.join(app_path, '..', '..', 'lib'))
+ $LOAD_PATH << lib_path
+end
+
app_path = File.dirname(__FILE__)
require 'lorj'
# If you want to see what is happening in the framework, uncomment debug
# settings.
-# PrcLib.level = Logger::DEBUG # Printed out to your console.
-# PrcLib.core_level = 3 # framework debug levels.
+# PrcLib.level = Logger::DEBUG # Printed out to your console.
+# PrcLib.core_level = 3 # framework debug levels.
# Initialize the framework
processes = [File.join(app_path, 'process', 'students.rb')]
student_core = Lorj::Core.new(nil, processes)