Skip to content

Commit 3ac22a6

Browse files
committed
Merge branch 'master' into claytongentry/entities
2 parents b746ba3 + 8b636f0 commit 3ac22a6

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.rspec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
--format documentation
12
--require spec_helper
23
--color

bin/console

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
#!/usr/bin/env ruby
22
# frozen_string_literal: true
33

4+
lib_path = File.expand_path("../lib", __dir__)
5+
$LOAD_PATH.unshift(lib_path) unless $LOAD_PATH.include?(lib_path)
6+
47
require "bundler/setup"
58
require "manifolds"
69

bin/manifolds

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
#!/usr/bin/env ruby
2-
32
# frozen_string_literal: true
43

5-
require File.expand_path("../lib/manifolds", __dir__)
4+
lib_path = File.expand_path("../lib", Dir.pwd)
5+
$LOAD_PATH.unshift(lib_path) unless $LOAD_PATH.include?(lib_path)
6+
7+
require "manifolds/cli"
68

79
Manifolds::CLI.start(ARGV)

0 commit comments

Comments
 (0)