rise-cli 0.2.7 → 0.2.8

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 779d28b4d279139445e1cfc3cabbcb777cc54da6
4
- data.tar.gz: 6661708ae6aaac054aba24e89b5ff6e5eed92ce3
3
+ metadata.gz: d81f4817f91cb5415fde8eb6455d02fc559792cd
4
+ data.tar.gz: 0cfad3ef013df31dfbefd02fe0497ab53b0a144a
5
5
  SHA512:
6
- metadata.gz: 987b5296e8106cedada429dd17c41340cf5c7db17d3c24529be0677ee89234b6bb7a113fe4720d7f5517133f58a123530875b70712fcd084cac35437a0de4b3f
7
- data.tar.gz: 93893150e0e7b1d5c144ab76d694dfc43bff214eef0bc082f64ca234a1178ae02c3e3683231f3b21e7651b578564ce22855eec0b2e43e4fe79c102caa9b34ef5
6
+ metadata.gz: 27210a08d7046c259a0ba1c2a1196498295dbd8df75785267c183a800d35d1d520777edfd963782d4a2b0987d4b58a2d7a56caa34c432f1c5cf600e87f18a55a
7
+ data.tar.gz: 05765a3ec8a8ba87dc0bf4eabb09f593304ff8d3d069f47d795fe06e4db8ed70186977e1fa3c11bc1300b3ee743cbd3b25f7be28a8fc05c63f513bfcc503ddc4
data/.gitignore CHANGED
@@ -1,2 +1,2 @@
1
- # Old html files
2
- views
1
+ # Old html files
2
+ views
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,95 +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
- unicode-display_width (1.3.0)
74
- whirly (0.2.6)
75
- unicode-display_width (~> 1.1)
76
-
77
- PLATFORMS
78
- ruby
79
-
80
- DEPENDENCIES
81
- activesupport
82
- bcrypt
83
- clipboard
84
- credit_card_validations
85
- http
86
- os
87
- paint
88
- rex-text
89
- rspec
90
- rspec-core
91
- rubocop
92
- whirly
93
-
94
- BUNDLED WITH
95
- 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,63 +1,62 @@
1
- [![rise](https://github.com/cbrnrd/rise/raw/master/img/rise_logo.png)](https://rise.sh)
2
- &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
3
- [![Code Climate](https://img.shields.io/codeclimate/github/cbrnrd/rise.svg?style=flat-square)](https://codeclimate.com/github/cbrnrd/rise)
4
- [![Build Status](https://img.shields.io/travis/cbrnrd/rise.svg?style=flat-square)](https://travis-ci.org/cbrnrd/rise)
5
- [![Gem](https://img.shields.io/gem/v/rise-cli.svg?style=flat-square)](https://rubygems.org/gems/rise-cli)
6
- [![Gem](https://img.shields.io/gem/dt/rise-cli.svg?style=flat-square)](https://rubygems.org/gems/rise-cli)
7
- [![license](https://img.shields.io/github/license/mashape/apistatus.svg?style=flat-square)](https://github.com/cbrnrd/rise/blob/master/LICENSE)
8
-
9
- # Usage
10
-
11
- Using rise is simple, just run the `rise` command
12
-
13
- [![asciicast](https://asciinema.org/a/Z7aigs1yAaqJWYqL1fQaqv9yt.png)](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
- - gzip file transfer
53
- - actual use of the password hash for secure uploads
54
-
55
- ## Authors
56
-
57
- - **Carter Brainerd** - [Website](https://carterbrainerd.me)
58
-
59
- See also the list of [contributors](https://github.com/cbrnrd/rise/contributors) who participated in this project.
60
-
61
- ## License
62
-
63
- This project is licensed under the MIT License - see the [LICENSE](https://github.com/cbrnrd/rise/blob/master/LICENSE) file for details
1
+ [![rise](https://github.com/cbrnrd/rise/raw/master/img/rise_logo.png)](https://rise.sh)
2
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
3
+ [![Code Climate](https://img.shields.io/codeclimate/github/kabisaict/flow.svg?style=flat-square)](https://codeclimate.com/github/cbrnrd/rise)
4
+ [![Build Status](https://img.shields.io/travis/cbrnrd/rise.svg?style=flat-square)](https://travis-ci.org/cbrnrd/rise)
5
+ [![Gem](https://img.shields.io/gem/v/rise-cli.svg?style=flat-square)](https://rubygems.org/gems/rise-cli)
6
+ [![Gem](https://img.shields.io/gem/dt/rise-cli.svg?style=flat-square)](https://rubygems.org/gems/rise-cli)
7
+ [![license](https://img.shields.io/github/license/mashape/apistatus.svg?style=flat-square)](https://github.com/cbrnrd/rise/blob/master/LICENSE)
8
+
9
+ # Usage
10
+
11
+ Using rise is simple, just run the `rise` command
12
+
13
+ [![asciicast](https://asciinema.org/a/Z7aigs1yAaqJWYqL1fQaqv9yt.png)](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,7 +1,6 @@
1
- TODO things for rise:
2
- * FIX THE DAMN AUTH ARCHITECTURE SO IT WORKS DAMN IT
3
- * Add a .keyfile to each upload containing a private key. This file will be used to make sure that the same uuid can't be uploaded to twice and for a future file deletion method.
4
- * Add said file deletion method
5
- * Add GZIP file uploads
6
- * Add free and premium accounts (to the website too)
7
- - Add safe CC# storing for the local client
1
+ TODO things for rise:
2
+ * FIX THE DAMN AUTH ARCHITECTURE SO IT WORKS DAMN IT
3
+ * Add a .keyfile to each upload containing a private key. This file will be used to make sure that the same uuid can't be uploaded to twice and for a future file deletion method.
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__)