rise-cli 0.2.5 → 0.2.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 18cc23e94cacadc5a5ad1ab7eb0faab43adbb646
4
- data.tar.gz: 5c12e3d417413766fdafd92bd802ebdcaa8b9334
3
+ metadata.gz: 491baec96860c2e6f397b080d97d6a576c354426
4
+ data.tar.gz: 3b8d0b79e45e7a2fc30704369b997b854c335e1e
5
5
  SHA512:
6
- metadata.gz: fa22c89d20b82f85988da5e9af41c0734f882fc950fe2b5443248cc8915edcde881613ece2d9845068be712a76bd68fa9962b65d34d33d0e1b6ca8eb4d6b2d5f
7
- data.tar.gz: 03e0c1a1aad929627a4b7b946ee8dae6b3f31947a34af97e3d662d91d98a3721cdab42caa856ed0fc1ba0c7070e4043d9d1aa9e6dd146811f5efe83b572abf19
6
+ metadata.gz: dd4ee49ecc4fb1c41a1fba834f7befefc47d92b7581155c8132b42f7902ae9e7a5b157cb2ebf444b6a0eafd380dde3e5baf6d12e9ff7e1838753cb6afd514c5b
7
+ data.tar.gz: b2ee9cf8347959b817363a26b71584d6831c198393db75fc962f9b288a7a3551bde8ea929aa4b8bc404f548696984e4d0f464ae822eaac3fada730899ed929aa
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.00077 seconds |
4
- ./spec/rise/cli_spec.rb[1:2] | passed | 0.00046 seconds |
5
- ./spec/rise/cli_spec.rb[1:3] | passed | 0.00011 seconds |
6
- ./spec/rise/cli_spec.rb[1:4] | passed | 0.00011 seconds |
7
- ./spec/rise/cli_spec.rb[1:5] | passed | 0.08637 seconds |
1
+ example_id | status | run_time |
2
+ ---------------------------- | ------ | --------------- |
3
+ ./spec/rise/cli_spec.rb[1:1] | passed | 0.00077 seconds |
4
+ ./spec/rise/cli_spec.rb[1:2] | passed | 0.00046 seconds |
5
+ ./spec/rise/cli_spec.rb[1:3] | passed | 0.00011 seconds |
6
+ ./spec/rise/cli_spec.rb[1:4] | passed | 0.00011 seconds |
7
+ ./spec/rise/cli_spec.rb[1:5] | passed | 0.08637 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,15 +1,14 @@
1
- # frozen_string_literal: true
2
-
3
- source 'https://rubygems.org'
4
-
5
- gem 'bcrypt', platforms: :ruby
6
- gem 'clipboard'
7
- gem 'http'
8
- gem 'os'
9
- gem 'paint'
10
- gem 'rex-text'
11
- gem 'rspec'
12
- gem 'rspec-core'
13
- gem 'rubocop'
14
- gem 'subcommand'
15
- gem 'whirly'
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ gem 'bcrypt', platforms: :ruby
6
+ gem 'clipboard'
7
+ gem 'http'
8
+ gem 'os'
9
+ gem 'paint'
10
+ gem 'rex-text'
11
+ gem 'rspec'
12
+ gem 'rspec-core'
13
+ gem 'rubocop'
14
+ gem 'whirly'
data/Gemfile.lock CHANGED
@@ -1,80 +1,78 @@
1
- GEM
2
- remote: https://rubygems.org/
3
- specs:
4
- addressable (2.5.2)
5
- public_suffix (>= 2.0.2, < 4.0)
6
- ast (2.3.0)
7
- bcrypt (3.1.11)
8
- clipboard (1.1.1)
9
- diff-lcs (1.3)
10
- domain_name (0.5.20170404)
11
- unf (>= 0.0.5, < 1.0.0)
12
- http (3.0.0)
13
- addressable (~> 2.3)
14
- http-cookie (~> 1.0)
15
- http-form_data (>= 2.0.0.pre.pre2, < 3)
16
- http_parser.rb (~> 0.6.0)
17
- http-cookie (1.0.3)
18
- domain_name (~> 0.5)
19
- http-form_data (2.0.0)
20
- http_parser.rb (0.6.0)
21
- os (1.0.0)
22
- paint (2.0.0)
23
- parallel (1.12.0)
24
- parser (2.4.0.0)
25
- ast (~> 2.2)
26
- powerpack (0.1.1)
27
- public_suffix (3.0.0)
28
- rainbow (2.2.2)
29
- rake
30
- rake (12.0.0)
31
- rex-text (0.2.15)
32
- rspec (3.6.0)
33
- rspec-core (~> 3.6.0)
34
- rspec-expectations (~> 3.6.0)
35
- rspec-mocks (~> 3.6.0)
36
- rspec-core (3.6.0)
37
- rspec-support (~> 3.6.0)
38
- rspec-expectations (3.6.0)
39
- diff-lcs (>= 1.2.0, < 2.0)
40
- rspec-support (~> 3.6.0)
41
- rspec-mocks (3.6.0)
42
- diff-lcs (>= 1.2.0, < 2.0)
43
- rspec-support (~> 3.6.0)
44
- rspec-support (3.6.0)
45
- rubocop (0.50.0)
46
- parallel (~> 1.10)
47
- parser (>= 2.3.3.1, < 3.0)
48
- powerpack (~> 0.1)
49
- rainbow (>= 2.2.2, < 3.0)
50
- ruby-progressbar (~> 1.7)
51
- unicode-display_width (~> 1.0, >= 1.0.1)
52
- ruby-progressbar (1.9.0)
53
- subcommand (1.0.6)
54
- unf (0.1.4)
55
- unf_ext
56
- unf_ext (0.0.7.4)
57
- unf_ext (0.0.7.4-x64-mingw32)
58
- unicode-display_width (1.3.0)
59
- whirly (0.2.5)
60
- unicode-display_width (~> 1.1)
61
-
62
- PLATFORMS
63
- ruby
64
- x64-mingw32
65
-
66
- DEPENDENCIES
67
- bcrypt
68
- clipboard
69
- http
70
- os
71
- paint
72
- rex-text
73
- rspec
74
- rspec-core
75
- rubocop
76
- subcommand
77
- whirly
78
-
79
- BUNDLED WITH
80
- 1.15.4
1
+ GEM
2
+ remote: https://rubygems.org/
3
+ specs:
4
+ addressable (2.5.2)
5
+ public_suffix (>= 2.0.2, < 4.0)
6
+ ast (2.3.0)
7
+ bcrypt (3.1.11)
8
+ clipboard (1.1.1)
9
+ diff-lcs (1.3)
10
+ domain_name (0.5.20170404)
11
+ unf (>= 0.0.5, < 1.0.0)
12
+ http (3.0.0)
13
+ addressable (~> 2.3)
14
+ http-cookie (~> 1.0)
15
+ http-form_data (>= 2.0.0.pre.pre2, < 3)
16
+ http_parser.rb (~> 0.6.0)
17
+ http-cookie (1.0.3)
18
+ domain_name (~> 0.5)
19
+ http-form_data (2.0.0)
20
+ http_parser.rb (0.6.0)
21
+ os (1.0.0)
22
+ paint (2.0.0)
23
+ parallel (1.12.0)
24
+ parser (2.4.0.0)
25
+ ast (~> 2.2)
26
+ powerpack (0.1.1)
27
+ public_suffix (3.0.0)
28
+ rainbow (2.2.2)
29
+ rake
30
+ rake (12.0.0)
31
+ rex-text (0.2.15)
32
+ rspec (3.6.0)
33
+ rspec-core (~> 3.6.0)
34
+ rspec-expectations (~> 3.6.0)
35
+ rspec-mocks (~> 3.6.0)
36
+ rspec-core (3.6.0)
37
+ rspec-support (~> 3.6.0)
38
+ rspec-expectations (3.6.0)
39
+ diff-lcs (>= 1.2.0, < 2.0)
40
+ rspec-support (~> 3.6.0)
41
+ rspec-mocks (3.6.0)
42
+ diff-lcs (>= 1.2.0, < 2.0)
43
+ rspec-support (~> 3.6.0)
44
+ rspec-support (3.6.0)
45
+ rubocop (0.50.0)
46
+ parallel (~> 1.10)
47
+ parser (>= 2.3.3.1, < 3.0)
48
+ powerpack (~> 0.1)
49
+ rainbow (>= 2.2.2, < 3.0)
50
+ ruby-progressbar (~> 1.7)
51
+ unicode-display_width (~> 1.0, >= 1.0.1)
52
+ ruby-progressbar (1.9.0)
53
+ unf (0.1.4)
54
+ unf_ext
55
+ unf_ext (0.0.7.4)
56
+ unf_ext (0.0.7.4-x64-mingw32)
57
+ unicode-display_width (1.3.0)
58
+ whirly (0.2.5)
59
+ unicode-display_width (~> 1.1)
60
+
61
+ PLATFORMS
62
+ ruby
63
+ x64-mingw32
64
+
65
+ DEPENDENCIES
66
+ bcrypt
67
+ clipboard
68
+ http
69
+ os
70
+ paint
71
+ rex-text
72
+ rspec
73
+ rspec-core
74
+ rubocop
75
+ whirly
76
+
77
+ BUNDLED WITH
78
+ 1.15.4
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,63 @@
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/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
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
- * 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 .riseignore functionality
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 .riseignore functionality
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__)