Skip to content

Commit

Permalink
Add guard binstubs, cleanup Rakefile
Browse files Browse the repository at this point in the history
  • Loading branch information
ktheory committed Apr 29, 2016
1 parent 061b8af commit ecfdfac
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 2 deletions.
2 changes: 0 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
require "rubygems"
require "bundler/setup"
require "bundler/gem_tasks"
require 'rake/testtask'

Expand Down
16 changes: 16 additions & 0 deletions bin/_guard-core
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/usr/bin/env ruby
#
# This file was generated by Bundler.
#
# The application '_guard-core' is installed as part of a gem, and
# this file is here to facilitate running it.
#

require "pathname"
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
Pathname.new(__FILE__).realpath)

require "rubygems"
require "bundler/setup"

load Gem.bin_path("guard", "_guard-core")
16 changes: 16 additions & 0 deletions bin/guard
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/usr/bin/env ruby
#
# This file was generated by Bundler.
#
# The application 'guard' is installed as part of a gem, and
# this file is here to facilitate running it.
#

require "pathname"
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
Pathname.new(__FILE__).realpath)

require "rubygems"
require "bundler/setup"

load Gem.bin_path("guard", "guard")

0 comments on commit ecfdfac

Please sign in to comment.