Skip to content

Commit

Permalink
Use rake/bundler to build gem.
Browse files Browse the repository at this point in the history
  • Loading branch information
jqr committed Jun 28, 2017
1 parent 9c0e5d8 commit 7a59c07
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
/.bundle/
/Gemfile.lock
/doc/
/pkg/
/tmp/
.DS_Store
Thumbs.db
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source "https://rubygems.org"

# Specify your gem's dependencies in zzzz.gemspec
gemspec
2 changes: 2 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
require "bundler/gem_tasks"
require "rake/testtask"
3 changes: 3 additions & 0 deletions php-serialize.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,7 @@ Gem::Specification.new do |spec|
EOF
spec.test_file = 'test.rb'
spec.has_rdoc = true

spec.add_development_dependency "bundler", "~> 1.15"
spec.add_development_dependency "rake", "~> 10.0"
end

0 comments on commit 7a59c07

Please sign in to comment.