jquery-file-upload 0.0.5 → 0.0.6

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: 1de908c71b884a06c523f4981282cf962e2185f7
4
- data.tar.gz: e8220270da7b0bd38408bb9c6e01bea92797d821
3
+ metadata.gz: eddfdf2d92e4a834ad8e6a76d77d44cb6ca7d144
4
+ data.tar.gz: fa5a56e2e7d9969aa543671243167cbe156b8dd6
5
5
  SHA512:
6
- metadata.gz: bc47f23f0e750f679c8abffae3e023b6fc3bdf0393bac2397ed61aa28fd11446a18b20b07efc1dde9cf7dfa82edac93d99d07064f35f3caa70722f2f9433c009
7
- data.tar.gz: 9a42abc37d15af4968ef2d7a91b033146684fa3bc170b20aa8ce29ae9a3d5344d24cb78ee60e8ee3e4d3d1d304019dd6e72f7651722f8e57fd1fe88143638a07
6
+ metadata.gz: 1c8c318bf706db518357f71a861c942525f18fede650b49b1d0e5768aa8d5cdc9ab7e87575f953b028e435b84da1106964b6e2e57321dafe61bb6b5163e1ef40
7
+ data.tar.gz: b9736626223171c5ca2026bf6a82115bab57fe3c637f3ab3568342165b4b298424d17d7b9f122cf09052e15ba52e1a1e6a6cb5c0fa813b3e75677fff531f775c
data/README.md CHANGED
@@ -11,7 +11,7 @@ Pre 1.0.0 is all a work in progress and I am committing as I go and as I add fea
11
11
 
12
12
  Add this line to your application's Gemfile:
13
13
 
14
- gem 'jquery-file-upload-rails'
14
+ gem 'jquery-file-upload'
15
15
 
16
16
  And then execute:
17
17
 
@@ -19,7 +19,7 @@ And then execute:
19
19
 
20
20
  Or install it yourself as:
21
21
 
22
- $ gem install jquery-file-upload-rails
22
+ $ gem install jquery-file-upload
23
23
 
24
24
  ## Configuration
25
25
 
@@ -42,7 +42,7 @@ Somewhere in your view require upload and download template
42
42
  = render 'jquery_file_upload/basic_plus_ui/download'
43
43
  ```
44
44
 
45
- And form to upload files, default uploading field is :file attribute, but you can change it with :as param
45
+ And form to upload files, default uploading field is :file attribute, but you can change it with `:as` param
46
46
  ```haml
47
47
  = render 'jquery_file_upload/basic_plus_ui/form', file: Image.new, as: :image
48
48
  ```
@@ -52,12 +52,23 @@ On the bottom load jquery libraries
52
52
  = javascript_include_tag 'jquery-file-upload'
53
53
  ```
54
54
 
55
- Or require it in application.js.coffee
55
+ Or require it in `application.js.coffee`
56
56
  ```coffee
57
57
  #= require jquery-file-upload
58
58
  ```
59
59
 
60
+ Add css to `application.css.scss`
61
+ ```scss
62
+ *= require jquery-file-upload
63
+ ```
64
+
60
65
  ## Change Log
66
+ #### 0.0.6
67
+ - **ADD** Readme Changelog documentation for `0.0.5` :P
68
+
69
+ ##### 0.0.5
70
+ - **ADD** Added css rails require
71
+ - **BUG** Lots of errors with javascript
61
72
 
62
73
  ##### 0.0.4
63
74
  - **FIXED** Configuration files now actually work and mean something!
@@ -72,11 +83,6 @@ Or require it in application.js.coffee
72
83
  - **FIXED** Cleaned up the documentation a bit
73
84
  - **FIXED** Javascript no longer 404s
74
85
 
75
- #### 0.0.1
76
- - Initial commit
77
- - **BUG** The javascript 404s
78
-
79
-
80
86
  [See the full change log](https://github.com/mikestephens/jquery-file-upload/wiki/Change-Log)
81
87
 
82
88
  ## Contributing
@@ -1,3 +1,3 @@
1
1
  module JqueryFileUpload
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jquery-file-upload
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Stephens