inline_svg 0.6.0 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of inline_svg might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fde0d0a49947181287301e1187f1997776562082
4
- data.tar.gz: cf777cfc4ca0b6df101d1f40c18b1dc48d1421d7
3
+ metadata.gz: b073abae9747da39a851cf848bb44a758601194b
4
+ data.tar.gz: 88e5783ea3586451675e40cec3086ed447c7c167
5
5
  SHA512:
6
- metadata.gz: 2efa11f12a1c8caaae63242dd9f389e97edbbbd9ce3104c02ae7f319325bd8474743dc902ccea28cfb23481bf29c6337d31187895e84f58c0b70e91d21530995
7
- data.tar.gz: 50613509d30a572898a1c7108a93885b202eb2a61b0afaf8179b4a8fcbc5c54e44ff38a259f061566585e1cb27f5d559c9aebd9769e81f323c16be572f417aea
6
+ metadata.gz: a31ca28cfbbc4ef367bb63b74fb2c72be55ae31c4fe0e68d61b723be83e8ba6137ee387ad7453c21d624bba9e4460567820a7b5bbacffe7a67ac77052bb9a3ee
7
+ data.tar.gz: 99b1f4e20d66372b8da7b3f486b56958a9b30db7f01a402557a1e6d92636ccfb41835fe86baf6e0627ad515f7508806bf8cf1ad43e991c768f5a33a65994dbe2
data/CHANGELOG.md CHANGED
@@ -5,6 +5,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
5
5
  ## [Unreleased][unreleased]
6
6
  - Nothing.
7
7
 
8
+ ## [0.6.1] - 2015-08-06
9
+ ### Fixed
10
+ - Support Rails versions back to 4.0.4. Thanks, @walidvb.
11
+
8
12
  ## [0.6.0] - 2015-07-07
9
13
  ### Added
10
14
  - Apply user-supplied [custom
@@ -61,7 +65,8 @@ transformations](https://github.com/jamesmartin/inline_svg/blob/master/README.md
61
65
  ### Added
62
66
  - Basic Railtie and view helper to inline SVG documents to Rails views.
63
67
 
64
- [unreleased]: https://github.com/jamesmartin/inline_svg/compare/v0.6.0...HEAD
68
+ [unreleased]: https://github.com/jamesmartin/inline_svg/compare/v0.6.1...HEAD
69
+ [0.6.1]: https://github.com/jamesmartin/inline_svg/compare/v0.6.0...v0.6.1
65
70
  [0.6.0]: https://github.com/jamesmartin/inline_svg/compare/v0.5.3...v0.6.0
66
71
  [0.5.3]: https://github.com/jamesmartin/inline_svg/compare/v0.5.2...v0.5.3
67
72
  [0.5.2]: https://github.com/jamesmartin/inline_svg/compare/v0.5.1...v0.5.2
data/inline_svg.gemspec CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["inline_svg@jmrtn.com"]
11
11
  spec.summary = %q{Embeds an SVG document, inline.}
12
12
  spec.description = %q{Get an SVG into your view and then style it with CSS.}
13
- spec.homepage = ""
13
+ spec.homepage = "https://github.com/jamesmartin/inline_svg"
14
14
  spec.license = "MIT"
15
15
 
16
16
  spec.files = `git ls-files`.split($/)
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
22
22
  spec.add_development_dependency "rake"
23
23
  spec.add_development_dependency "rspec", "~> 3.2"
24
24
 
25
- spec.add_runtime_dependency "activesupport", ">= 4.1.9"
25
+ spec.add_runtime_dependency "activesupport", ">= 4.0.4"
26
26
  spec.add_runtime_dependency "nokogiri", "~> 1.6", '~> 1.6'
27
27
  spec.add_runtime_dependency "loofah", ">= 2.0"
28
28
  end
@@ -1,3 +1,3 @@
1
1
  module InlineSvg
2
- VERSION = "0.6.0"
2
+ VERSION = "0.6.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: inline_svg
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Martin
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-07-07 00:00:00.000000000 Z
11
+ date: 2015-08-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -58,14 +58,14 @@ dependencies:
58
58
  requirements:
59
59
  - - ">="
60
60
  - !ruby/object:Gem::Version
61
- version: 4.1.9
61
+ version: 4.0.4
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - ">="
67
67
  - !ruby/object:Gem::Version
68
- version: 4.1.9
68
+ version: 4.0.4
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: nokogiri
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -139,7 +139,7 @@ files:
139
139
  - spec/transformation_pipeline/transformations/size_spec.rb
140
140
  - spec/transformation_pipeline/transformations/width_spec.rb
141
141
  - spec/transformation_pipeline/transformations_spec.rb
142
- homepage: ''
142
+ homepage: https://github.com/jamesmartin/inline_svg
143
143
  licenses:
144
144
  - MIT
145
145
  metadata: {}