github-cli 0.0.0.pre.a

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 4e5de7f936847cdaa04411817f72634fce72162e
4
+ data.tar.gz: 334960c7d38d97cf5beace5a51761d029d01150c
5
+ SHA512:
6
+ metadata.gz: 89975220d17ef03c62a03bfa3fc0c53d1aef15a26c58297bc7da5731f819e3aa4f256b39ea0157a07d436fb7c58d5988e07fa4dbdd3d54640d0a999f5d54ac98
7
+ data.tar.gz: 26a988189bef67cc8b1ea098cb341ab1dbf2b78764877ac4dfab8e4c0a46ed6cc483ede2d8caf885fbb45ce6bc5449c81a435206d1efb290de600151a11bc5af
data/.gitignore ADDED
@@ -0,0 +1 @@
1
+ Gemfile.lock
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
@@ -0,0 +1,17 @@
1
+ lib = File.expand_path('../lib', __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require 'github/cli/version'
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = 'github-cli'
7
+ s.version = Github::CLI::VERSION
8
+ s.date = '2016-04-06'
9
+ s.summary = 'A cli tool for interacting with github'
10
+ s.authors = ['Nan Zhong']
11
+ s.email = 'nan@nine27.com'
12
+ s.files = `git ls-files -z`.split("\x0")
13
+ s.license = 'MIT'
14
+
15
+ s.add_dependency 'thor', '~> 0.19.1'
16
+ s.add_development_dependency 'rspec', '~> 3.4.0'
17
+ end
@@ -0,0 +1,5 @@
1
+ module Github
2
+ module CLI
3
+ VERSION = '0.0.0-a'
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,75 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: github-cli
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0.pre.a
5
+ platform: ruby
6
+ authors:
7
+ - Nan Zhong
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-04-06 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: thor
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 0.19.1
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 0.19.1
27
+ - !ruby/object:Gem::Dependency
28
+ name: rspec
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 3.4.0
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 3.4.0
41
+ description:
42
+ email: nan@nine27.com
43
+ executables: []
44
+ extensions: []
45
+ extra_rdoc_files: []
46
+ files:
47
+ - ".gitignore"
48
+ - Gemfile
49
+ - github-cli.gemspec
50
+ - lib/github/cli/version.rb
51
+ homepage:
52
+ licenses:
53
+ - MIT
54
+ metadata: {}
55
+ post_install_message:
56
+ rdoc_options: []
57
+ require_paths:
58
+ - lib
59
+ required_ruby_version: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
63
+ version: '0'
64
+ required_rubygems_version: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">"
67
+ - !ruby/object:Gem::Version
68
+ version: 1.3.1
69
+ requirements: []
70
+ rubyforge_project:
71
+ rubygems_version: 2.5.1
72
+ signing_key:
73
+ specification_version: 4
74
+ summary: A cli tool for interacting with github
75
+ test_files: []