Commit 467df1df authored by Jonne Haß's avatar Jonne Haß
Browse files

generate binstubs

parent 59d60ff9
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -58,7 +58,6 @@ tmp/
*.swp
*~
*#
bin/*
nbproject
patches-*
capybara-*.html

bin/autospec

0 → 100755
+16 −0
Original line number Diff line number Diff line
#!/usr/bin/env ruby
#
# This file was generated by Bundler.
#
# The application 'autospec' 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('rspec-core', 'autospec')

bin/bundle

0 → 100755
+3 −0
Original line number Diff line number Diff line
#!/usr/bin/env ruby
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
load Gem.bin_path('bundler', 'bundle')

bin/compass

0 → 100755
+16 −0
Original line number Diff line number Diff line
#!/usr/bin/env ruby
#
# This file was generated by Bundler.
#
# The application 'compass' 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('compass', 'compass')

bin/cucumber

0 → 100755
+16 −0
Original line number Diff line number Diff line
#!/usr/bin/env ruby
#
# This file was generated by Bundler.
#
# The application 'cucumber' 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('cucumber', 'cucumber')
Loading