--- !ruby/object:Gem::Specification
name: github_cli
version: !ruby/object:Gem::Version
  version: 0.4.2
  prerelease: 
platform: ruby
authors:
- Piotr Murach
autorequire: 
bindir: bin
cert_chain: []
date: 2012-07-12 00:00:00.000000000Z
dependencies:
- !ruby/object:Gem::Dependency
  name: github_api
  requirement: &2153403460 !ruby/object:Gem::Requirement
    none: false
    requirements:
    - - ~>
      - !ruby/object:Gem::Version
        version: '0.6'
  type: :runtime
  prerelease: false
  version_requirements: *2153403460
- !ruby/object:Gem::Dependency
  name: thor
  requirement: &2153403000 !ruby/object:Gem::Requirement
    none: false
    requirements:
    - - ! '>='
      - !ruby/object:Gem::Version
        version: '0'
  type: :runtime
  prerelease: false
  version_requirements: *2153403000
- !ruby/object:Gem::Dependency
  name: rspec
  requirement: &2153402520 !ruby/object:Gem::Requirement
    none: false
    requirements:
    - - ! '>='
      - !ruby/object:Gem::Version
        version: '0'
  type: :development
  prerelease: false
  version_requirements: *2153402520
- !ruby/object:Gem::Dependency
  name: aruba
  requirement: &2153401860 !ruby/object:Gem::Requirement
    none: false
    requirements:
    - - ! '>='
      - !ruby/object:Gem::Version
        version: '0'
  type: :development
  prerelease: false
  version_requirements: *2153401860
- !ruby/object:Gem::Dependency
  name: rake
  requirement: &2153401360 !ruby/object:Gem::Requirement
    none: false
    requirements:
    - - ! '>='
      - !ruby/object:Gem::Version
        version: '0'
  type: :development
  prerelease: false
  version_requirements: *2153401360
description: CLI-based access to GitHub API v3
email:
- ''
executables:
- ghc
extensions: []
extra_rdoc_files: []
files:
- .gitignore
- .rspec
- .rvmrc
- .travis.yml
- CHANGELOG.md
- Gemfile
- Gemfile.lock
- LICENSE
- README.md
- Rakefile
- bin/ghc
- features/blob.feature
- features/collaborator.feature
- features/commit.feature
- features/completion.feature
- features/content.feature
- features/download.feature
- features/email.feature
- features/errors.feature
- features/event.feature
- features/executable.feature
- features/follower.feature
- features/fork.feature
- features/gist.feature
- features/hook.feature
- features/label.feature
- features/member.feature
- features/milestone.feature
- features/organization.feature
- features/pull_request.feature
- features/reference.feature
- features/repositories.feature
- features/search.feature
- features/search_commands.feature
- features/settings.feature
- features/support/env.rb
- features/support/hooks.rb
- features/tag.feature
- features/team.feature
- features/tree.feature
- features/usage.feature
- features/user.feature
- features/watching.feature
- fixtures/simple_config
- ghc_logo.png
- github_cli.gemspec
- lib/github_cli.rb
- lib/github_cli/api.rb
- lib/github_cli/apis.rb
- lib/github_cli/apis/authorization.rb
- lib/github_cli/apis/blob.rb
- lib/github_cli/apis/collaborator.rb
- lib/github_cli/apis/commit.rb
- lib/github_cli/apis/content.rb
- lib/github_cli/apis/download.rb
- lib/github_cli/apis/email.rb
- lib/github_cli/apis/event.rb
- lib/github_cli/apis/follower.rb
- lib/github_cli/apis/fork.rb
- lib/github_cli/apis/gist.rb
- lib/github_cli/apis/hook.rb
- lib/github_cli/apis/issue.rb
- lib/github_cli/apis/key.rb
- lib/github_cli/apis/label.rb
- lib/github_cli/apis/member.rb
- lib/github_cli/apis/milestone.rb
- lib/github_cli/apis/organization.rb
- lib/github_cli/apis/pull_request.rb
- lib/github_cli/apis/reference.rb
- lib/github_cli/apis/repository.rb
- lib/github_cli/apis/search.rb
- lib/github_cli/apis/tag.rb
- lib/github_cli/apis/team.rb
- lib/github_cli/apis/tree.rb
- lib/github_cli/apis/user.rb
- lib/github_cli/apis/watching.rb
- lib/github_cli/cli.rb
- lib/github_cli/command.rb
- lib/github_cli/command/arguments.rb
- lib/github_cli/command/completion.rb
- lib/github_cli/command/usage.rb
- lib/github_cli/commands.rb
- lib/github_cli/commands/authorizations.rb
- lib/github_cli/commands/blobs.rb
- lib/github_cli/commands/collaborators.rb
- lib/github_cli/commands/commits.rb
- lib/github_cli/commands/contents.rb
- lib/github_cli/commands/downloads.rb
- lib/github_cli/commands/emails.rb
- lib/github_cli/commands/events.rb
- lib/github_cli/commands/followers.rb
- lib/github_cli/commands/forks.rb
- lib/github_cli/commands/gists.rb
- lib/github_cli/commands/hooks.rb
- lib/github_cli/commands/issues.rb
- lib/github_cli/commands/keys.rb
- lib/github_cli/commands/labels.rb
- lib/github_cli/commands/members.rb
- lib/github_cli/commands/milestones.rb
- lib/github_cli/commands/organizations.rb
- lib/github_cli/commands/pull_requests.rb
- lib/github_cli/commands/references.rb
- lib/github_cli/commands/repositories.rb
- lib/github_cli/commands/search.rb
- lib/github_cli/commands/tags.rb
- lib/github_cli/commands/teams.rb
- lib/github_cli/commands/trees.rb
- lib/github_cli/commands/users.rb
- lib/github_cli/commands/watching.rb
- lib/github_cli/config.rb
- lib/github_cli/dsl.rb
- lib/github_cli/editor.rb
- lib/github_cli/errors.rb
- lib/github_cli/formatter.rb
- lib/github_cli/formatters.rb
- lib/github_cli/formatters/csv.rb
- lib/github_cli/formatters/table.rb
- lib/github_cli/helpers.rb
- lib/github_cli/pager.rb
- lib/github_cli/subcommands.rb
- lib/github_cli/system.rb
- lib/github_cli/terminal.rb
- lib/github_cli/thor_ext.rb
- lib/github_cli/ui.rb
- lib/github_cli/util.rb
- lib/github_cli/version.rb
- spec/github_cli/api_spec.rb
- spec/github_cli/cli_spec.rb
- spec/github_cli/command_spec.rb
- spec/github_cli/config_spec.rb
- spec/github_cli/helpers_spec.rb
- spec/github_cli/pager_spec.rb
- spec/github_cli/util_spec.rb
- spec/spec_helper.rb
homepage: http://github.com/peter-murach/github_cli
licenses: []
post_install_message: 
rdoc_options: []
require_paths:
- lib
required_ruby_version: !ruby/object:Gem::Requirement
  none: false
  requirements:
  - - ! '>='
    - !ruby/object:Gem::Version
      version: '0'
required_rubygems_version: !ruby/object:Gem::Requirement
  none: false
  requirements:
  - - ! '>='
    - !ruby/object:Gem::Version
      version: '0'
requirements: []
rubyforge_project: 
rubygems_version: 1.8.10
signing_key: 
specification_version: 3
summary: github_cli is a set of tools that provide full command line access to GitHub
  API v3
test_files:
- features/blob.feature
- features/collaborator.feature
- features/commit.feature
- features/completion.feature
- features/content.feature
- features/download.feature
- features/email.feature
- features/errors.feature
- features/event.feature
- features/executable.feature
- features/follower.feature
- features/fork.feature
- features/gist.feature
- features/hook.feature
- features/label.feature
- features/member.feature
- features/milestone.feature
- features/organization.feature
- features/pull_request.feature
- features/reference.feature
- features/repositories.feature
- features/search.feature
- features/search_commands.feature
- features/settings.feature
- features/support/env.rb
- features/support/hooks.rb
- features/tag.feature
- features/team.feature
- features/tree.feature
- features/usage.feature
- features/user.feature
- features/watching.feature
- spec/github_cli/api_spec.rb
- spec/github_cli/cli_spec.rb
- spec/github_cli/command_spec.rb
- spec/github_cli/config_spec.rb
- spec/github_cli/helpers_spec.rb
- spec/github_cli/pager_spec.rb
- spec/github_cli/util_spec.rb
- spec/spec_helper.rb