uppy_on_rails 0.29.0 → 0.29.1
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/README.md +11 -13
- data/lib/uppy_on_rails/version.rb +1 -1
- data/vendor/assets/javascripts/uppy_on_rails.js +2 -0
- data/vendor/assets/stylesheets/uppy_on_rails.css +1 -0
- metadata +3 -5
- data/.gitignore +0 -8
- data/CODE_OF_CONDUCT.md +0 -74
- data/Gemfile +0 -6
- data/uppy_on_rails.gemspec +0 -30
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b0fe80298120daa694c61cd88268fb181672e6b4
|
4
|
+
data.tar.gz: 00536de78b70e2c2e0ce6f443a963530c12beeef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d6a414f43c61e732aa33ae5ef6614809f4642a57730c9997aec71a976ca10fa70ea1b5bbf2ade3496f83ddcd09fc6d50773854b57914d12ddbe04302d027c61e
|
7
|
+
data.tar.gz: 3ade53674bcb9742c613a10f1d504906c100833cfd1554f66b7ca1915262fe17df30002b3821924bd38b95b2d0dbd1782398a4301747d7017d762c5fd9de8454
|
data/README.md
CHANGED
@@ -1,8 +1,7 @@
|
|
1
1
|
# UppyOnRails
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
3
|
+
This is a wrapper for uppy.io library
|
4
|
+
Uppy is a file uploader library. You can see more information about it: https://uppy.io/
|
6
5
|
|
7
6
|
## Installation
|
8
7
|
|
@@ -14,7 +13,7 @@ gem 'uppy_on_rails'
|
|
14
13
|
|
15
14
|
And then execute:
|
16
15
|
|
17
|
-
$ bundle
|
16
|
+
$ bundle install
|
18
17
|
|
19
18
|
Or install it yourself as:
|
20
19
|
|
@@ -22,22 +21,21 @@ Or install it yourself as:
|
|
22
21
|
|
23
22
|
## Usage
|
24
23
|
|
25
|
-
|
24
|
+
Add the js import in `app/assets/javascripts/application.js`:
|
26
25
|
|
27
|
-
|
26
|
+
```js
|
27
|
+
//= require uppy_on_rails
|
28
|
+
```
|
28
29
|
|
29
|
-
|
30
|
+
And add the css import in `app/assets/stylesheets/application.css`:
|
30
31
|
|
31
|
-
|
32
|
+
```js
|
33
|
+
*= require uppy_on_rails
|
34
|
+
```
|
32
35
|
|
33
|
-
## Contributing
|
34
36
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/uppy_on_rails. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
36
37
|
|
37
38
|
## License
|
38
39
|
|
39
40
|
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
40
41
|
|
41
|
-
## Code of Conduct
|
42
|
-
|
43
|
-
Everyone interacting in the UppyOnRails project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/uppy_on_rails/blob/master/CODE_OF_CONDUCT.md).
|