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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 79680670a191770ae590fbe9b726986254c30d9c
4
- data.tar.gz: c25c5f3c7647677910d1daaaab29450f8c958a98
3
+ metadata.gz: b0fe80298120daa694c61cd88268fb181672e6b4
4
+ data.tar.gz: 00536de78b70e2c2e0ce6f443a963530c12beeef
5
5
  SHA512:
6
- metadata.gz: e8bd4a093556d699a5f9055f184b066622230cd5b6134b38569b5d7ac5892e9962021cd5b0b51d46cf2734fbffcbd2b0333e6b8ce1c518f756a2d328bb6b58f4
7
- data.tar.gz: befbb776be8831ab2f8517650c561b534c6aeb8f6d1a6fd50b702c80a5456c992c3f63f2f1ac7b654cf7b4304ca952926757ec8a97ccd3e4f522bc05728efd38
6
+ metadata.gz: d6a414f43c61e732aa33ae5ef6614809f4642a57730c9997aec71a976ca10fa70ea1b5bbf2ade3496f83ddcd09fc6d50773854b57914d12ddbe04302d027c61e
7
+ data.tar.gz: 3ade53674bcb9742c613a10f1d504906c100833cfd1554f66b7ca1915262fe17df30002b3821924bd38b95b2d0dbd1782398a4301747d7017d762c5fd9de8454
data/README.md CHANGED
@@ -1,8 +1,7 @@
1
1
  # UppyOnRails
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/uppy_on_rails`. To experiment with that code, run `bin/console` for an interactive prompt.
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
- TODO: Write usage instructions here
24
+ Add the js import in `app/assets/javascripts/application.js`:
26
25
 
27
- ## Development
26
+ ```js
27
+ //= require uppy_on_rails
28
+ ```
28
29
 
29
- After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+ And add the css import in `app/assets/stylesheets/application.css`:
30
31
 
31
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
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).
@@ -1,3 +1,3 @@
1
1
  module UppyOnRails
2
- VERSION = '0.29.0'
2
+ VERSION = '0.29.1'
3
3
  end