Skip to content

Instantly share code, notes, and snippets.

View gutenye's full-sized avatar
:octocat:
Guten tag!

Guten gutenye

:octocat:
Guten tag!
View GitHub Profile
@gutenye
gutenye / gist:882616
Created March 23, 2011 04:25
write bundler into .gemspec file instead of using 'gemspec'
# a.gemspec
require "bundler"
Gem::Specification.new do |s|
s.name = "hello"
....
s.add_bundler_dependencies
end