FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
github_cli/github_cli.gemspec at master · danieldeb/github_cli · GitHub
danieldeb
/
github_cli
Public
forked from
piotrmurach/github_cli
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
github_cli
/
github_cli.gemspec
Copy path
More file actions
More file actions
Latest commit
History
History
History
28 lines (24 loc) · 1.16 KB
Breadcrumbs
github_cli
/
github_cli.gemspec
Copy path
File metadata and controls
28 lines (24 loc) · 1.16 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# -*- encoding: utf-8 -*-
require
File
.
expand_path
(
'../lib/github_cli/version'
,
__FILE__
)
Gem
::
Specification
.
new
do
|
gem
|
gem
.
authors
=
[
"Piotr Murach"
]
gem
.
email
=
[
""
]
gem
.
description
=
%q{CLI-based access to GitHub API v3}
gem
.
summary
=
%q{github_cli is a set of tools that provide full command line access to GitHub API v3}
gem
.
homepage
=
"http://github.com/peter-murach/github_cli"
man_files
=
Dir
.
glob
(
"lib/github_cli/man/**/*"
)
vendor_files
=
Dir
.
glob
(
"lib/github_cli/vendor/**/*"
)
gem
.
executables
=
`git ls-files -- bin/*`
.
split
(
"
\n
"
)
.
map
{
|
f
|
File
.
basename
(
f
)
}
gem
.
files
=
`git ls-files`
.
split
(
"
\n
"
)
+
man_files
+
vendor_files
gem
.
test_files
=
`git ls-files -- {spec,features}/*`
.
split
(
"
\n
"
)
gem
.
name
=
"github_cli"
gem
.
require_paths
=
[
"lib"
]
gem
.
version
=
GithubCLI
::
VERSION
gem
.
add_dependency
'github_api'
,
'~> 0.10'
gem
.
add_dependency
'tty'
,
'~> 0.0.10'
gem
.
add_development_dependency
'rspec'
gem
.
add_development_dependency
'aruba'
gem
.
add_development_dependency
'rake'
gem
.
add_development_dependency
'communist'
gem
.
add_development_dependency
'ronn'
end
Back
|
FazBrowse Home
|
New Git URL