Fixed the missing bin directory
authorNeil Smith <neil.git@njae.me.uk>
Mon, 6 Jan 2014 20:38:01 +0000 (20:38 +0000)
committerNeil Smith <neil.git@njae.me.uk>
Mon, 6 Jan 2014 20:38:01 +0000 (20:38 +0000)
bin/bundle [new file with mode: 0755]
bin/rails [new file with mode: 0755]
bin/rake [new file with mode: 0755]

diff --git a/bin/bundle b/bin/bundle
new file mode 100755 (executable)
index 0000000..66e9889
--- /dev/null
@@ -0,0 +1,3 @@
+#!/usr/bin/env ruby
+ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
+load Gem.bin_path('bundler', 'bundle')
diff --git a/bin/rails b/bin/rails
new file mode 100755 (executable)
index 0000000..728cd85
--- /dev/null
+++ b/bin/rails
@@ -0,0 +1,4 @@
+#!/usr/bin/env ruby
+APP_PATH = File.expand_path('../../config/application',  __FILE__)
+require_relative '../config/boot'
+require 'rails/commands'
diff --git a/bin/rake b/bin/rake
new file mode 100755 (executable)
index 0000000..1724048
--- /dev/null
+++ b/bin/rake
@@ -0,0 +1,4 @@
+#!/usr/bin/env ruby
+require_relative '../config/boot'
+require 'rake'
+Rake.application.run