Rakefile in forj-0.0.39 vs Rakefile in forj-0.0.40
- old
+ new
@@ -13,11 +13,16 @@
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
-
+require 'rubygems'
+require 'bundler/setup'
require 'rspec/core/rake_task'
+
+$stdout.sync = true
+$stderr.sync = true
+Bundler::GemHelper.install_task
task :default => [:spec]
desc 'Run the specs.'
RSpec::Core::RakeTask.new do |t|