jsoneditor-rails 0.1.0 → 1.0.0

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: ff99be7c9cdb897cd8bc2d69834e67907c026b7c
4
- data.tar.gz: 340520fb4b306878233cadfa706e0b20ce4fa36e
3
+ metadata.gz: 8e1818882213183182ef11386489b26e6cc386c1
4
+ data.tar.gz: 5d4fd61bdbb25a6dec7ea1b7d7fc1f51406db068
5
5
  SHA512:
6
- metadata.gz: 70dae4863c3643200a7171e1b8848cef8900c27e967834c80ec7b9c5dd33fa5c91a3ac70dd2f2aea8f65e548bfe82309a2669238a09eee6a8fb69db9ed13ac4b
7
- data.tar.gz: 893e19d63ea8e38736cb7448bc7866295162271febab02b4b02f8a8bcd89c37ff6c18c3d66f0d7599bc983723c136e8d196e025c000c79a0dd89f31ec3ade1ca
6
+ metadata.gz: 61638fc856e8bf2d12b3d2c5296bfe76167e309f732c97f39b73f08a9e36bc7e0b11f6e29ddc0ada90234925dda6d10c2da1506884682309e200fca0ae6c7851
7
+ data.tar.gz: 34bad4e11a56cf455e70ab543d85289ef731fce48fca24f4e75a4acaa8098300e1e7962b0d6258a046fca423c9e93d74b0390fde0dd88c50d312caf55476ca70
data/README.md CHANGED
@@ -20,12 +20,12 @@ Or install it yourself as:
20
20
 
21
21
  ## Usage
22
22
 
23
- The jsoneditor files will be added to the asset pipeline and available for you to use. In your `app/assets/javascripts/application.js` add:
23
+ In your `app/assets/javascripts/application.js` add:
24
24
 
25
25
  ```js
26
26
  //= require jsoneditor
27
27
 
28
- // Or add the minimalist version if you prefer that
28
+ // Or use the minimalist version instead
29
29
  //= require jsoneditor-minimalist
30
30
  ```
31
31
 
@@ -39,8 +39,8 @@ Then add the JSON Editor CSS to your `app/assets/stylesheets/application.scss`:
39
39
 
40
40
  * `git clone https://github.com/javierjulio/jsoneditor-rails.git`
41
41
  * `bundle install`
42
-
43
- To update the vendor assets with the latest version run `rake update_json_editor` and create a pull request with those changes.
42
+ * `rake update_json_editor_assets`
43
+ * Create pull request with latest changes
44
44
 
45
45
  ## Contributing
46
46
 
data/Rakefile CHANGED
@@ -9,8 +9,8 @@ end
9
9
 
10
10
  task :default => :test
11
11
 
12
- desc "Update JSON Editor version"
13
- task :update_json_editor do
12
+ desc "Update JSON Editor assets"
13
+ task :update_json_editor_assets do
14
14
  dist_url = "https://raw.githubusercontent.com/josdejong/jsoneditor/master/dist/"
15
15
 
16
16
  puts "Downloading jsoneditor.js"
@@ -1,5 +1,5 @@
1
1
  module Jsoneditor
2
2
  module Rails
3
- VERSION = "0.1.0"
3
+ VERSION = "1.0.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jsoneditor-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Javier Julio