Module: OSDN::CLI
- Defined in:
- lib/osdn/cli.rb,
lib/osdn/cli/runner.rb,
lib/osdn/cli/version.rb,
lib/osdn/cli/command/login.rb,
lib/osdn/cli/command/package.rb,
lib/osdn/cli/command/release.rb,
lib/osdn/cli/command/relfile.rb,
lib/osdn/cli/command/frs_base.rb,
lib/osdn/cli/command/frs_mkdirs.rb,
lib/osdn/cli/command/frs_upload.rb
Defined Under Namespace
Modules: Command
Classes: Runner
Constant Summary
collapse
- VERSION =
"0.1.11"
- @@client_id =
"osdn-cli"
- @@client_secret =
"not-secret"
- @@_show_progress =
false
- @@_rate_limit =
nil
Class Method Summary
collapse
Class Method Details
._rate_limit ⇒ Object
34
35
36
|
# File 'lib/osdn/cli.rb', line 34
def _rate_limit
@@_rate_limit
end
|
._rate_limit=(v) ⇒ Object
37
38
39
|
# File 'lib/osdn/cli.rb', line 37
def _rate_limit=(v)
@@_rate_limit = v
end
|
._show_progress ⇒ Object
26
27
28
|
# File 'lib/osdn/cli.rb', line 26
def _show_progress
@@_show_progress
end
|
._show_progress=(v) ⇒ Object
29
30
31
|
# File 'lib/osdn/cli.rb', line 29
def _show_progress=(v)
@@_show_progress = v
end
|
.client_id ⇒ Object
18
19
20
|
# File 'lib/osdn/cli.rb', line 18
def client_id
@@client_id
end
|
.client_secret ⇒ Object
21
22
23
|
# File 'lib/osdn/cli.rb', line 21
def client_secret
@@client_secret
end
|