summernote-image-attributes-rails 0.8.6 → 0.8.7

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: e359a4edcebf1d40e24e6b630cce18f4f488fcc7
4
- data.tar.gz: 41cba3fbf548a9fa2a711a435196ba0b0174972a
3
+ metadata.gz: 6234f8ee4f1f853f8cb80fb73008e50d6ec31522
4
+ data.tar.gz: 202f83bf86c33f683e62a953f7a3c860b90a88c5
5
5
  SHA512:
6
- metadata.gz: 03f8c986b74b916d88040959f7c3c43e86ce02f231d389ecee2878034a28069ba3fce732aba98760bb1ea1087fc127cbb3c3374ad71f5d1dfbd72c77f70ad201
7
- data.tar.gz: c21a08e77e29a1661535161747cda8aa4045b6fe924dfaec82d2b0d165b61629cd921a945022e62257cd280b5a29782fe34679772bb70d27926f697b0b410a52
6
+ metadata.gz: 107bc02a7cabeeffa002146a652436bb6bed40087bd5bbe954168874e7ac868b92bdc29bc5628c25e40c71eb998a8f7e87b4393cd86cd7d184e0fea6afbc3b7d
7
+ data.tar.gz: c51363c6bb9f458ad5ef30cb866d6cc10dffaea6bc00c6e658908415e2425728ac00623b05f2ab0d930f8e9a05c0703fb77ea17279ee8b06187e02256adcbe66
data/CHANGELOG.md CHANGED
@@ -5,3 +5,8 @@ CHANGELOG
5
5
  ------------------
6
6
 
7
7
  Initial stable release.
8
+
9
+ 0.8.7 (2017-05-19)
10
+ ------------------
11
+
12
+ Working
data/README.md CHANGED
@@ -14,7 +14,7 @@ Add the following gems to your application's `Gemfile`:
14
14
  ```ruby
15
15
  gem 'bootstrap-sass' # required
16
16
  gem 'summernote-rails' # required
17
- gem 'summernote-image-attributes-rails', '~> 0.8.6'
17
+ gem 'summernote-image-attributes-rails', '~> 0.8.7'
18
18
  ```
19
19
 
20
20
  And then execute on the terminal:
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'bundler/setup'
4
+ require 'summernote-image-attributes-rails'
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
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,14 @@
1
+ require 'rails'
2
+ require 'summernote-image-attributes-rails/version'
3
+
4
+ module SummernoteImageAttributesRails
5
+ module Rails
6
+ # Rails >= 3.1
7
+ if (::Rails::VERSION::MAJOR > 3) ||
8
+ (::Rails::VERSION::MAJOR == 3 && ::Rails::VERSION::MINOR >= 1)
9
+ require 'summernote-image-attributes-rails/engine'
10
+ else
11
+ require 'summernote-image-attributes-rails/railtie'
12
+ end
13
+ end
14
+ end
@@ -1,5 +1,5 @@
1
1
  module SummernoteImageAttributesRails
2
2
  module Rails
3
- VERSION = '0.8.6'
3
+ VERSION = '0.8.7'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: summernote-image-attributes-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.6
4
+ version: 0.8.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dennis Suitters
@@ -69,6 +69,8 @@ files:
69
69
  - MAINTAIN.md
70
70
  - README.md
71
71
  - Rakefile
72
+ - bin/console
73
+ - bin/setup
72
74
  - lib/summernote-image-attributes-rails.rb
73
75
  - lib/summernote-image-attributes-rails/engine.rb
74
76
  - lib/summernote-image-attributes-rails/railtie.rb