rise-cli 0.2.9 → 0.3.0
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 +4 -4
- data/.gitignore +4 -2
- data/.rspec_status +7 -7
- data/.rubocop.yml +2 -2
- data/.travis.yml +9 -9
- data/CONTRIBUTING.md +27 -27
- data/Gemfile +16 -16
- data/Gemfile.lock +97 -97
- data/LICENSE +21 -21
- data/README.md +62 -62
- data/Rakefile +6 -6
- data/TODO.txt +6 -6
- data/bin/console +14 -14
- data/bin/rise +115 -112
- data/bin/setup +8 -8
- data/img/rise_logo.png +0 -0
- data/lib/core/constants.rb +17 -17
- data/lib/core/text.rb +24 -23
- data/lib/core/transport.rb +76 -76
- data/lib/core/util.rb +144 -144
- data/lib/core.rb +9 -9
- data/rise-cli.gemspec +27 -27
- data/scripts/test_and_build.sh +15 -15
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5fbced96a521c06bc83a0da3702d011d92ccfed0
|
4
|
+
data.tar.gz: 4c07b05867a7cc69caa0242f127992ba76e63eeb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1b994de982771cf8a1733cd73b8646c7c60ae383d337b0c85d87ea2372945256710da779335a00e6b58bead5ab4148421f9731bf298d3733dcea3b6a44517af9
|
7
|
+
data.tar.gz: aff821f0c2bd39a9b9791218744b5803dfe1e8c725876fe39807695c0471a0ab30fce7fe4cdbb0c7816826d0a20e1c2ce53971f225dc2d40fdf00718f2977cff
|
data/.gitignore
CHANGED
data/.rspec_status
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
example_id | status | run_time |
|
2
|
-
---------------------------- | ------ | --------------- |
|
3
|
-
./spec/rise/cli_spec.rb[1:1] | passed | 0.0012 seconds |
|
4
|
-
./spec/rise/cli_spec.rb[1:2] | passed | 0.00088 seconds |
|
5
|
-
./spec/rise/cli_spec.rb[1:3] | passed | 0.00016 seconds |
|
6
|
-
./spec/rise/cli_spec.rb[1:4] | passed | 0.00015 seconds |
|
7
|
-
./spec/rise/cli_spec.rb[1:5] | passed | 0.08628 seconds |
|
1
|
+
example_id | status | run_time |
|
2
|
+
---------------------------- | ------ | --------------- |
|
3
|
+
./spec/rise/cli_spec.rb[1:1] | passed | 0.0012 seconds |
|
4
|
+
./spec/rise/cli_spec.rb[1:2] | passed | 0.00088 seconds |
|
5
|
+
./spec/rise/cli_spec.rb[1:3] | passed | 0.00016 seconds |
|
6
|
+
./spec/rise/cli_spec.rb[1:4] | passed | 0.00015 seconds |
|
7
|
+
./spec/rise/cli_spec.rb[1:5] | passed | 0.08628 seconds |
|
data/.rubocop.yml
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
Metrics/LineLength:
|
2
|
-
Max: 100
|
1
|
+
Metrics/LineLength:
|
2
|
+
Max: 100
|
data/.travis.yml
CHANGED
@@ -1,9 +1,9 @@
|
|
1
|
-
language: ruby
|
2
|
-
dist: trusty
|
3
|
-
rvm:
|
4
|
-
- 2.4
|
5
|
-
|
6
|
-
script:
|
7
|
-
- bundle && bundle install
|
8
|
-
- bundle exec rspec
|
9
|
-
- bundle exec rubocop --fail-level W
|
1
|
+
language: ruby
|
2
|
+
dist: trusty
|
3
|
+
rvm:
|
4
|
+
- 2.4
|
5
|
+
|
6
|
+
script:
|
7
|
+
- bundle && bundle install
|
8
|
+
- bundle exec rspec
|
9
|
+
- bundle exec rubocop --fail-level W
|
data/CONTRIBUTING.md
CHANGED
@@ -1,27 +1,27 @@
|
|
1
|
-
## Thanks!
|
2
|
-
Thank you for wanting to contribute to rise!
|
3
|
-
If you want to contribute, there are a few guidelines that
|
4
|
-
should generally be followed.
|
5
|
-
|
6
|
-
### How the contributing process goes
|
7
|
-
1. You create a pull request doing your best to follow the do's and dont's outlined below
|
8
|
-
2. I will review your code if it needs to be reviewed
|
9
|
-
3. If travis and codeclimate OK the changes, your code will be merged onto master and eventually shipped with the next gem release
|
10
|
-
|
11
|
-
### Code contributions
|
12
|
-
* **Do** your best to stick to the [Ruby style guide]
|
13
|
-
* **Do** follow the [50/72 rule] for Git commit messages.
|
14
|
-
* **Do** make sure that there are no rubocop warnings on your new code (using `--fail-level W`)
|
15
|
-
|
16
|
-
### Pull Requests
|
17
|
-
* **Do** have a clear, concise title
|
18
|
-
* **Do** include as many details as possible in the pull request body
|
19
|
-
* **Do** include console output (if applicable) in your pull request (asciinema if possible)
|
20
|
-
* **Do** `require` your new file in `lib/core.rb` and place the file in `lib/core/`if you are adding new library code.
|
21
|
-
* **Don't** leave your pull request descriptions blank.
|
22
|
-
* **Don't** go radio silent on pull requests, try to reply fast so we can land your code quicker
|
23
|
-
* **Dont't** get agitated if your request is not accepted.
|
24
|
-
|
25
|
-
|
26
|
-
[Ruby style guide]:https://github.com/bbatsov/ruby-style-guide
|
27
|
-
[50/72 rule]:http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html
|
1
|
+
## Thanks!
|
2
|
+
Thank you for wanting to contribute to rise!
|
3
|
+
If you want to contribute, there are a few guidelines that
|
4
|
+
should generally be followed.
|
5
|
+
|
6
|
+
### How the contributing process goes
|
7
|
+
1. You create a pull request doing your best to follow the do's and dont's outlined below
|
8
|
+
2. I will review your code if it needs to be reviewed
|
9
|
+
3. If travis and codeclimate OK the changes, your code will be merged onto master and eventually shipped with the next gem release
|
10
|
+
|
11
|
+
### Code contributions
|
12
|
+
* **Do** your best to stick to the [Ruby style guide]
|
13
|
+
* **Do** follow the [50/72 rule] for Git commit messages.
|
14
|
+
* **Do** make sure that there are no rubocop warnings on your new code (using `--fail-level W`)
|
15
|
+
|
16
|
+
### Pull Requests
|
17
|
+
* **Do** have a clear, concise title
|
18
|
+
* **Do** include as many details as possible in the pull request body
|
19
|
+
* **Do** include console output (if applicable) in your pull request (asciinema if possible)
|
20
|
+
* **Do** `require` your new file in `lib/core.rb` and place the file in `lib/core/`if you are adding new library code.
|
21
|
+
* **Don't** leave your pull request descriptions blank.
|
22
|
+
* **Don't** go radio silent on pull requests, try to reply fast so we can land your code quicker
|
23
|
+
* **Dont't** get agitated if your request is not accepted.
|
24
|
+
|
25
|
+
|
26
|
+
[Ruby style guide]:https://github.com/bbatsov/ruby-style-guide
|
27
|
+
[50/72 rule]:http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html
|
data/Gemfile
CHANGED
@@ -1,16 +1,16 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
source 'https://rubygems.org'
|
4
|
-
|
5
|
-
gem 'activesupport'
|
6
|
-
gem 'bcrypt', platforms: :ruby
|
7
|
-
gem 'clipboard'
|
8
|
-
gem 'credit_card_validations'
|
9
|
-
gem 'http'
|
10
|
-
gem 'os'
|
11
|
-
gem 'paint'
|
12
|
-
gem 'rex-text'
|
13
|
-
gem 'rspec'
|
14
|
-
gem 'rspec-core'
|
15
|
-
gem 'rubocop'
|
16
|
-
gem 'whirly'
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source 'https://rubygems.org'
|
4
|
+
|
5
|
+
gem 'activesupport'
|
6
|
+
gem 'bcrypt', platforms: :ruby
|
7
|
+
gem 'clipboard'
|
8
|
+
gem 'credit_card_validations'
|
9
|
+
gem 'http'
|
10
|
+
gem 'os'
|
11
|
+
gem 'paint'
|
12
|
+
gem 'rex-text'
|
13
|
+
gem 'rspec'
|
14
|
+
gem 'rspec-core'
|
15
|
+
gem 'rubocop'
|
16
|
+
gem 'whirly'
|
data/Gemfile.lock
CHANGED
@@ -1,97 +1,97 @@
|
|
1
|
-
GEM
|
2
|
-
remote: https://rubygems.org/
|
3
|
-
specs:
|
4
|
-
activemodel (5.1.4)
|
5
|
-
activesupport (= 5.1.4)
|
6
|
-
activesupport (5.1.4)
|
7
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
8
|
-
i18n (~> 0.7)
|
9
|
-
minitest (~> 5.1)
|
10
|
-
tzinfo (~> 1.1)
|
11
|
-
addressable (2.5.2)
|
12
|
-
public_suffix (>= 2.0.2, < 4.0)
|
13
|
-
ast (2.3.0)
|
14
|
-
bcrypt (3.1.11)
|
15
|
-
clipboard (1.1.1)
|
16
|
-
concurrent-ruby (1.0.5)
|
17
|
-
credit_card_validations (3.4.0)
|
18
|
-
activemodel (>= 3, <= 6)
|
19
|
-
activesupport (>= 3, <= 6)
|
20
|
-
diff-lcs (1.3)
|
21
|
-
domain_name (0.5.20170404)
|
22
|
-
unf (>= 0.0.5, < 1.0.0)
|
23
|
-
http (3.0.0)
|
24
|
-
addressable (~> 2.3)
|
25
|
-
http-cookie (~> 1.0)
|
26
|
-
http-form_data (>= 2.0.0.pre.pre2, < 3)
|
27
|
-
http_parser.rb (~> 0.6.0)
|
28
|
-
http-cookie (1.0.3)
|
29
|
-
domain_name (~> 0.5)
|
30
|
-
http-form_data (2.0.0)
|
31
|
-
http_parser.rb (0.6.0)
|
32
|
-
i18n (0.9.1)
|
33
|
-
concurrent-ruby (~> 1.0)
|
34
|
-
minitest (5.10.3)
|
35
|
-
os (1.0.0)
|
36
|
-
paint (2.0.1)
|
37
|
-
parallel (1.12.0)
|
38
|
-
parser (2.4.0.0)
|
39
|
-
ast (~> 2.2)
|
40
|
-
powerpack (0.1.1)
|
41
|
-
public_suffix (3.0.0)
|
42
|
-
rainbow (2.2.2)
|
43
|
-
rake
|
44
|
-
rake (12.2.1)
|
45
|
-
rex-text (0.2.15)
|
46
|
-
rspec (3.7.0)
|
47
|
-
rspec-core (~> 3.7.0)
|
48
|
-
rspec-expectations (~> 3.7.0)
|
49
|
-
rspec-mocks (~> 3.7.0)
|
50
|
-
rspec-core (3.7.0)
|
51
|
-
rspec-support (~> 3.7.0)
|
52
|
-
rspec-expectations (3.7.0)
|
53
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
54
|
-
rspec-support (~> 3.7.0)
|
55
|
-
rspec-mocks (3.7.0)
|
56
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
57
|
-
rspec-support (~> 3.7.0)
|
58
|
-
rspec-support (3.7.0)
|
59
|
-
rubocop (0.51.0)
|
60
|
-
parallel (~> 1.10)
|
61
|
-
parser (>= 2.3.3.1, < 3.0)
|
62
|
-
powerpack (~> 0.1)
|
63
|
-
rainbow (>= 2.2.2, < 3.0)
|
64
|
-
ruby-progressbar (~> 1.7)
|
65
|
-
unicode-display_width (~> 1.0, >= 1.0.1)
|
66
|
-
ruby-progressbar (1.9.0)
|
67
|
-
thread_safe (0.3.6)
|
68
|
-
tzinfo (1.2.4)
|
69
|
-
thread_safe (~> 0.1)
|
70
|
-
unf (0.1.4)
|
71
|
-
unf_ext
|
72
|
-
unf_ext (0.0.7.4)
|
73
|
-
unf_ext (0.0.7.4-x64-mingw32)
|
74
|
-
unicode-display_width (1.3.0)
|
75
|
-
whirly (0.2.6)
|
76
|
-
unicode-display_width (~> 1.1)
|
77
|
-
|
78
|
-
PLATFORMS
|
79
|
-
ruby
|
80
|
-
x64-mingw32
|
81
|
-
|
82
|
-
DEPENDENCIES
|
83
|
-
activesupport
|
84
|
-
bcrypt
|
85
|
-
clipboard
|
86
|
-
credit_card_validations
|
87
|
-
http
|
88
|
-
os
|
89
|
-
paint
|
90
|
-
rex-text
|
91
|
-
rspec
|
92
|
-
rspec-core
|
93
|
-
rubocop
|
94
|
-
whirly
|
95
|
-
|
96
|
-
BUNDLED WITH
|
97
|
-
1.16.0
|
1
|
+
GEM
|
2
|
+
remote: https://rubygems.org/
|
3
|
+
specs:
|
4
|
+
activemodel (5.1.4)
|
5
|
+
activesupport (= 5.1.4)
|
6
|
+
activesupport (5.1.4)
|
7
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
8
|
+
i18n (~> 0.7)
|
9
|
+
minitest (~> 5.1)
|
10
|
+
tzinfo (~> 1.1)
|
11
|
+
addressable (2.5.2)
|
12
|
+
public_suffix (>= 2.0.2, < 4.0)
|
13
|
+
ast (2.3.0)
|
14
|
+
bcrypt (3.1.11)
|
15
|
+
clipboard (1.1.1)
|
16
|
+
concurrent-ruby (1.0.5)
|
17
|
+
credit_card_validations (3.4.0)
|
18
|
+
activemodel (>= 3, <= 6)
|
19
|
+
activesupport (>= 3, <= 6)
|
20
|
+
diff-lcs (1.3)
|
21
|
+
domain_name (0.5.20170404)
|
22
|
+
unf (>= 0.0.5, < 1.0.0)
|
23
|
+
http (3.0.0)
|
24
|
+
addressable (~> 2.3)
|
25
|
+
http-cookie (~> 1.0)
|
26
|
+
http-form_data (>= 2.0.0.pre.pre2, < 3)
|
27
|
+
http_parser.rb (~> 0.6.0)
|
28
|
+
http-cookie (1.0.3)
|
29
|
+
domain_name (~> 0.5)
|
30
|
+
http-form_data (2.0.0)
|
31
|
+
http_parser.rb (0.6.0)
|
32
|
+
i18n (0.9.1)
|
33
|
+
concurrent-ruby (~> 1.0)
|
34
|
+
minitest (5.10.3)
|
35
|
+
os (1.0.0)
|
36
|
+
paint (2.0.1)
|
37
|
+
parallel (1.12.0)
|
38
|
+
parser (2.4.0.0)
|
39
|
+
ast (~> 2.2)
|
40
|
+
powerpack (0.1.1)
|
41
|
+
public_suffix (3.0.0)
|
42
|
+
rainbow (2.2.2)
|
43
|
+
rake
|
44
|
+
rake (12.2.1)
|
45
|
+
rex-text (0.2.15)
|
46
|
+
rspec (3.7.0)
|
47
|
+
rspec-core (~> 3.7.0)
|
48
|
+
rspec-expectations (~> 3.7.0)
|
49
|
+
rspec-mocks (~> 3.7.0)
|
50
|
+
rspec-core (3.7.0)
|
51
|
+
rspec-support (~> 3.7.0)
|
52
|
+
rspec-expectations (3.7.0)
|
53
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
54
|
+
rspec-support (~> 3.7.0)
|
55
|
+
rspec-mocks (3.7.0)
|
56
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
57
|
+
rspec-support (~> 3.7.0)
|
58
|
+
rspec-support (3.7.0)
|
59
|
+
rubocop (0.51.0)
|
60
|
+
parallel (~> 1.10)
|
61
|
+
parser (>= 2.3.3.1, < 3.0)
|
62
|
+
powerpack (~> 0.1)
|
63
|
+
rainbow (>= 2.2.2, < 3.0)
|
64
|
+
ruby-progressbar (~> 1.7)
|
65
|
+
unicode-display_width (~> 1.0, >= 1.0.1)
|
66
|
+
ruby-progressbar (1.9.0)
|
67
|
+
thread_safe (0.3.6)
|
68
|
+
tzinfo (1.2.4)
|
69
|
+
thread_safe (~> 0.1)
|
70
|
+
unf (0.1.4)
|
71
|
+
unf_ext
|
72
|
+
unf_ext (0.0.7.4)
|
73
|
+
unf_ext (0.0.7.4-x64-mingw32)
|
74
|
+
unicode-display_width (1.3.0)
|
75
|
+
whirly (0.2.6)
|
76
|
+
unicode-display_width (~> 1.1)
|
77
|
+
|
78
|
+
PLATFORMS
|
79
|
+
ruby
|
80
|
+
x64-mingw32
|
81
|
+
|
82
|
+
DEPENDENCIES
|
83
|
+
activesupport
|
84
|
+
bcrypt
|
85
|
+
clipboard
|
86
|
+
credit_card_validations
|
87
|
+
http
|
88
|
+
os
|
89
|
+
paint
|
90
|
+
rex-text
|
91
|
+
rspec
|
92
|
+
rspec-core
|
93
|
+
rubocop
|
94
|
+
whirly
|
95
|
+
|
96
|
+
BUNDLED WITH
|
97
|
+
1.16.0
|
data/LICENSE
CHANGED
@@ -1,21 +1,21 @@
|
|
1
|
-
MIT License
|
2
|
-
|
3
|
-
Copyright (c) 2017 Carter Brainerd
|
4
|
-
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
7
|
-
in the Software without restriction, including without limitation the rights
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
10
|
-
furnished to do so, subject to the following conditions:
|
11
|
-
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
13
|
-
copies or substantial portions of the Software.
|
14
|
-
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
-
SOFTWARE.
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2017 Carter Brainerd
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/README.md
CHANGED
@@ -1,62 +1,62 @@
|
|
1
|
-
[](https://rise.sh)
|
2
|
-
|
3
|
-
[](https://codeclimate.com/github/cbrnrd/rise)
|
4
|
-
[](https://travis-ci.org/cbrnrd/rise)
|
5
|
-
[](https://rubygems.org/gems/rise-cli)
|
6
|
-
[](https://rubygems.org/gems/rise-cli)
|
7
|
-
[](https://github.com/cbrnrd/rise/blob/master/LICENSE)
|
8
|
-
|
9
|
-
# Usage
|
10
|
-
|
11
|
-
Using rise is simple, just run the `rise` command
|
12
|
-
|
13
|
-
[](https://asciinema.org/a/Z7aigs1yAaqJWYqL1fQaqv9yt)
|
14
|
-
|
15
|
-
## Installing
|
16
|
-
|
17
|
-
In order to get rise up and running, there's 2 ways you can install it.
|
18
|
-
|
19
|
-
1. Download the gem
|
20
|
-
|
21
|
-
```
|
22
|
-
gem install rise-cli
|
23
|
-
```
|
24
|
-
|
25
|
-
2. Build from source
|
26
|
-
|
27
|
-
```
|
28
|
-
$ git clone https://github.com/cbrnrd/rise
|
29
|
-
$ bundle install
|
30
|
-
```
|
31
|
-
|
32
|
-
## Built With
|
33
|
-
|
34
|
-
- [RubyGems](https://rubygems.org) - the Ruby community's gem hosting service
|
35
|
-
- [Atom](https://atom.io/) - A hackable text editor for the 21st Century
|
36
|
-
- [DigitalOcean](https://digitalocean.com) - Used for server hosting
|
37
|
-
|
38
|
-
## Contributing
|
39
|
-
|
40
|
-
Please read [CONTRIBUTING.md](https://github.com/cbrnrd/rise/blob/master/CONTRIBUTING.md) for details on our code of conduct, and the process for submitting a pull requests.
|
41
|
-
|
42
|
-
## Features
|
43
|
-
- No need to install git, svn, or any other version control software.
|
44
|
-
- No complex cloud setup
|
45
|
-
- Extremely fast upload speeds
|
46
|
-
- Unlimited unique URL's
|
47
|
-
- No manual setup of websites
|
48
|
-
- Your services are always served over a secure connection
|
49
|
-
- Open source so that you can know exactly what code is runnning on your computer.
|
50
|
-
|
51
|
-
## Coming soon
|
52
|
-
- Account dashboard and website statistics
|
53
|
-
|
54
|
-
## Authors
|
55
|
-
|
56
|
-
- **Carter Brainerd** - [Website](https://carterbrainerd.me)
|
57
|
-
|
58
|
-
See also the list of [contributors](https://github.com/cbrnrd/rise/contributors) who participated in this project.
|
59
|
-
|
60
|
-
## License
|
61
|
-
|
62
|
-
This project is licensed under the MIT License - see the [LICENSE](https://github.com/cbrnrd/rise/blob/master/LICENSE) file for details
|
1
|
+
[](https://rise.sh)
|
2
|
+
|
3
|
+
[](https://codeclimate.com/github/cbrnrd/rise)
|
4
|
+
[](https://travis-ci.org/cbrnrd/rise)
|
5
|
+
[](https://rubygems.org/gems/rise-cli)
|
6
|
+
[](https://rubygems.org/gems/rise-cli)
|
7
|
+
[](https://github.com/cbrnrd/rise/blob/master/LICENSE)
|
8
|
+
|
9
|
+
# Usage
|
10
|
+
|
11
|
+
Using rise is simple, just run the `rise` command
|
12
|
+
|
13
|
+
[](https://asciinema.org/a/Z7aigs1yAaqJWYqL1fQaqv9yt)
|
14
|
+
|
15
|
+
## Installing
|
16
|
+
|
17
|
+
In order to get rise up and running, there's 2 ways you can install it.
|
18
|
+
|
19
|
+
1. Download the gem
|
20
|
+
|
21
|
+
```
|
22
|
+
gem install rise-cli
|
23
|
+
```
|
24
|
+
|
25
|
+
2. Build from source
|
26
|
+
|
27
|
+
```
|
28
|
+
$ git clone https://github.com/cbrnrd/rise
|
29
|
+
$ bundle install
|
30
|
+
```
|
31
|
+
|
32
|
+
## Built With
|
33
|
+
|
34
|
+
- [RubyGems](https://rubygems.org) - the Ruby community's gem hosting service
|
35
|
+
- [Atom](https://atom.io/) - A hackable text editor for the 21st Century
|
36
|
+
- [DigitalOcean](https://digitalocean.com) - Used for server hosting
|
37
|
+
|
38
|
+
## Contributing
|
39
|
+
|
40
|
+
Please read [CONTRIBUTING.md](https://github.com/cbrnrd/rise/blob/master/CONTRIBUTING.md) for details on our code of conduct, and the process for submitting a pull requests.
|
41
|
+
|
42
|
+
## Features
|
43
|
+
- No need to install git, svn, or any other version control software.
|
44
|
+
- No complex cloud setup
|
45
|
+
- Extremely fast upload speeds
|
46
|
+
- Unlimited unique URL's
|
47
|
+
- No manual setup of websites
|
48
|
+
- Your services are always served over a secure connection
|
49
|
+
- Open source so that you can know exactly what code is runnning on your computer.
|
50
|
+
|
51
|
+
## Coming soon
|
52
|
+
- Account dashboard and website statistics
|
53
|
+
|
54
|
+
## Authors
|
55
|
+
|
56
|
+
- **Carter Brainerd** - [Website](https://carterbrainerd.me)
|
57
|
+
|
58
|
+
See also the list of [contributors](https://github.com/cbrnrd/rise/contributors) who participated in this project.
|
59
|
+
|
60
|
+
## License
|
61
|
+
|
62
|
+
This project is licensed under the MIT License - see the [LICENSE](https://github.com/cbrnrd/rise/blob/master/LICENSE) file for details
|
data/Rakefile
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
require 'bundler/gem_tasks'
|
2
|
-
require 'rspec/core/rake_task'
|
3
|
-
|
4
|
-
RSpec::Core::RakeTask.new(:spec)
|
5
|
-
|
6
|
-
task default: :spec
|
1
|
+
require 'bundler/gem_tasks'
|
2
|
+
require 'rspec/core/rake_task'
|
3
|
+
|
4
|
+
RSpec::Core::RakeTask.new(:spec)
|
5
|
+
|
6
|
+
task default: :spec
|
data/TODO.txt
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
TODO things for rise:
|
2
|
-
*
|
3
|
-
*
|
4
|
-
* Add said file deletion method
|
5
|
-
* Add free and premium accounts (to the website too)
|
6
|
-
- Add safe CC# storing for the local client
|
1
|
+
TODO things for rise:
|
2
|
+
* Add more tasks
|
3
|
+
* Better support for tasks
|
4
|
+
* Add said file deletion method
|
5
|
+
* Add free and premium accounts (to the website too)
|
6
|
+
- Add safe CC# storing for the local client
|
data/bin/console
CHANGED
@@ -1,14 +1,14 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
require "bundler/setup"
|
4
|
-
require "rise"
|
5
|
-
|
6
|
-
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
-
# with your gem easier. You can also use a different console, if you like.
|
8
|
-
|
9
|
-
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
-
# require "pry"
|
11
|
-
# Pry.start
|
12
|
-
|
13
|
-
require "irb"
|
14
|
-
IRB.start(__FILE__)
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "rise"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|