Created
May 19, 2012 15:27
-
-
Save richo/2731231 to your computer and use it in GitHub Desktop.
vimdiff test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- encoding: utf-8 -*- | |
$:.push File.expand_path("../lib", __FILE__) | |
require "twat" | |
Gem::Specification.new do |s| | |
s.summary = "Command line tool for tweeting and whatnot" | |
s.description = s.summary | |
s.add_dependency "twitter" | |
s.add_dependency "oauth" | |
s.add_dependency "readline-ng", ">= 0.0.8" | |
s.add_development_dependency "rake" | |
s.add_development_dependency "mocha" | |
s.add_development_dependency "rspec" | |
s.add_development_dependency "mktemp" | |
s.files = `git ls-files`.split("\n") | |
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } | |
s.require_paths = ["lib"] | |
s.name = "twat" | |
s.version = Twat::VERSION | |
s.authors = ["Rich Healey"] | |
s.email = ["[email protected]"] | |
s.homepage = "http://github.com/richo/twat" | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- encoding: utf-8 -*- | |
$:.push File.expand_path("../lib", __FILE__) | |
require "twat" | |
Gem::Specification.new do |s| | |
s.name = "twat" | |
s.version = Twat::VERSION | |
s.authors = ["Rich Healey"] | |
s.email = ["[email protected]"] | |
s.homepage = "http://github.com/richo/twat" | |
s.summary = "Command line tool for tweeting and whatnot" | |
s.description = s.summary | |
s.add_dependency "twitter" | |
s.add_dependency "oauth" | |
s.add_dependency "readline-ng", ">= 0.0.8" | |
s.add_development_dependency "rake" | |
s.add_development_dependency "mocha" | |
s.add_development_dependency "rspec" | |
s.add_development_dependency "mktemp" | |
s.files = `git ls-files`.split("\n") | |
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } | |
s.require_paths = ["lib"] | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment