Skip to content

Instantly share code, notes, and snippets.

/a.rb Secret

Created November 9, 2012 21:52
Show Gist options
  • Save anonymous/378228b79532f9fe548f to your computer and use it in GitHub Desktop.
Save anonymous/378228b79532f9fe548f to your computer and use it in GitHub Desktop.
o = Gem::Specification.find_by_name("pry")
# => Gem::Specification.new do |s|
# s.authors = ["John Mair (banisterfiend)", "Conrad Irwin", "Ryan Fitzgerald"]
# s.date = Time.utc(2012, 10, 27)
# s.dependencies = [Gem::Dependency.new("coderay",
# Gem::Requirement.new(["~> 1.0.5"]),
# :runtime),
# Gem::Dependency.new("slop", Gem::Requirement.new(["~> 3.3.1"]), :runtime),
# Gem::Dependency.new("method_source",
# Gem::Requirement.new(["~> 0.8"]),
# :runtime),
# Gem::Dependency.new("bacon",
# Gem::Requirement.new(["~> 1.1"]),
# :development),
# Gem::Dependency.new("open4",
# Gem::Requirement.new(["~> 1.3"]),
# :development),
# Gem::Dependency.new("rake", Gem::Requirement.new(["~> 0.9"]), :development),
# Gem::Dependency.new("guard",
# Gem::Requirement.new(["~> 1.3.2"]),
# :development),
# Gem::Dependency.new("bond",
# Gem::Requirement.new(["~> 0.4.2"]),
# :development)]
# s.description = "An IRB alternative and runtime developer console"
# s.email = ["jrmair@gmail.com",
# "conrad.irwin@gmail.com",
# "rwfitzge@gmail.com"]
# s.executables = ["pry"]
# s.files = ["bin/pry"]
# s.homepage = "http://pry.github.com"
# s.name = "pry"
# s.require_paths = ["lib"]
# s.rubygems_version = "1.8.23"
# s.specification_version = 3
# s.summary = "An IRB alternative and runtime developer console"
# s.version = Gem::Version.new("0.9.10")
# end
o.test_files
# => []
o.files
# => ["bin/pry"]
o.description
# => "An IRB alternative and runtime developer console"
o.summary
# => "An IRB alternative and runtime developer console"
o.spec_dir
# => "/Users/johnmair/.rvm/gems/ruby-1.9.3-p286/specifications"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment