We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b746ba3 + 8b636f0 commit 3ac22a6Copy full SHA for 3ac22a6
.rspec
@@ -1,2 +1,3 @@
1
+--format documentation
2
--require spec_helper
3
--color
bin/console
@@ -1,6 +1,9 @@
#!/usr/bin/env ruby
# frozen_string_literal: true
4
+lib_path = File.expand_path("../lib", __dir__)
5
+$LOAD_PATH.unshift(lib_path) unless $LOAD_PATH.include?(lib_path)
6
+
7
require "bundler/setup"
8
require "manifolds"
9
bin/manifolds
@@ -1,7 +1,9 @@
-
-require File.expand_path("../lib/manifolds", __dir__)
+lib_path = File.expand_path("../lib", Dir.pwd)
+require "manifolds/cli"
Manifolds::CLI.start(ARGV)
0 commit comments