forked from stripe-archive/mosql
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove rubygems and bundler require.
This means that local development may now require a 'bundle exec' if you are using Bundler, but that MoSQL will run fine in environments where the gems are made available through some other means, and bundler is not available.
- Loading branch information
Showing
2 changed files
with
0 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
#!/usr/bin/env ruby | ||
|
||
require 'rubygems' | ||
require 'bundler/setup' | ||
require 'mosql/cli' | ||
|
||
MoSQL::CLI.run(ARGV) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
require 'rubygems' | ||
require 'bundler/setup' | ||
|
||
require 'minitest/autorun' | ||
require 'minitest/spec' | ||
require 'mocha' | ||
|