From 909bdfa22ce82d42d46f20ef87c8e1e23df44570 Mon Sep 17 00:00:00 2001 From: uu59 Date: Fri, 9 May 2014 10:56:54 +0900 Subject: [PATCH] Import bundler's rake tasks to make .gem file --- .gitignore | 3 +++ Rakefile | 2 ++ 2 files changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index 6a502e9..b7d2894 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,6 @@ # Ignore all logfiles and tempfiles. /log/*.log /tmp + +# built .gem file by `rake build` +/pkg diff --git a/Rakefile b/Rakefile index ba6b733..f3651a1 100644 --- a/Rakefile +++ b/Rakefile @@ -4,3 +4,5 @@ require File.expand_path('../config/application', __FILE__) Rails.application.load_tasks + +require "bundler/gem_tasks"