Skip to content

Instantly share code, notes, and snippets.

@richo
Created May 19, 2012 15:27
Show Gist options
  • Save richo/2731231 to your computer and use it in GitHub Desktop.
Save richo/2731231 to your computer and use it in GitHub Desktop.
vimdiff test
# -*- 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
# -*- 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