]> git.wincent.com - walrat.git/commitdiff
Add Gemfile.lock and Bundler binstubs
authorWincent Colaiuta <win@wincent.com>
Sat, 21 Aug 2010 08:54:51 +0000 (10:54 +0200)
committerWincent Colaiuta <win@wincent.com>
Sat, 21 Aug 2010 11:04:48 +0000 (13:04 +0200)
Signed-off-by: Wincent Colaiuta <win@wincent.com>
Gemfile.lock [new file with mode: 0644]
bin/autospec [new file with mode: 0755]
bin/spec [new file with mode: 0755]

diff --git a/Gemfile.lock b/Gemfile.lock
new file mode 100644 (file)
index 0000000..e1567cc
--- /dev/null
@@ -0,0 +1,16 @@
+PATH
+  remote: .
+  specs:
+    walrat (0.0.0.99)
+
+GEM
+  remote: http://rubygems.org/
+  specs:
+    rspec (1.3.0)
+
+PLATFORMS
+  ruby
+
+DEPENDENCIES
+  rspec (= 1.3.0)
+  walrat!
diff --git a/bin/autospec b/bin/autospec
new file mode 100755 (executable)
index 0000000..3d333e4
--- /dev/null
@@ -0,0 +1,14 @@
+#!/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.
+#
+
+ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile", __FILE__)
+
+require 'rubygems'
+require 'bundler/setup'
+
+load Gem.bin_path('rspec', 'autospec')
diff --git a/bin/spec b/bin/spec
new file mode 100755 (executable)
index 0000000..c41c75e
--- /dev/null
+++ b/bin/spec
@@ -0,0 +1,14 @@
+#!/usr/bin/env ruby
+#
+# This file was generated by Bundler.
+#
+# The application 'spec' is installed as part of a gem, and
+# this file is here to facilitate running it.
+#
+
+ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile", __FILE__)
+
+require 'rubygems'
+require 'bundler/setup'
+
+load Gem.bin_path('rspec', 'spec')