roadie-rails 1.2.1 → 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +4 -6
- data/Changelog.md +9 -1
- data/README.md +11 -6
- data/lib/roadie/rails/version.rb +1 -1
- data/roadie-rails.gemspec +2 -2
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e4d5c326e544bd6b1009636f171a58e72d617d46
|
4
|
+
data.tar.gz: 5dab77d31e9efae6d1a63846cd9a506501fcb407
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fb007edf188d872bd9143cf90ee974fed1d896d2ae849d14dc168be176c03aac868f911f5d289b94d911158e6588b9b6dce19a9eba65a682ee8369c75097195c
|
7
|
+
data.tar.gz: cad9b361c937836cffab6bc74e27d61b5f5fe7dba0d84821d271c29a53565b794bb451d1c879c6fb2e19de9cb8633b60155724d397a425bbc18b4e2b2b53a6d3
|
data/.travis.yml
CHANGED
@@ -1,12 +1,9 @@
|
|
1
1
|
sudo: false
|
2
|
-
dist: trusty
|
3
2
|
language: ruby
|
4
3
|
rvm:
|
5
|
-
- 2.2
|
6
|
-
- 2.3
|
7
|
-
- 2.4
|
8
|
-
- jruby-9
|
9
|
-
- rbx-3
|
4
|
+
- 2.2
|
5
|
+
- 2.3
|
6
|
+
- 2.4
|
10
7
|
|
11
8
|
matrix:
|
12
9
|
fast_finish: true
|
@@ -18,5 +15,6 @@ cache:
|
|
18
15
|
- spec/railsapps/rails_42_sprockets_rails_3/.bundle
|
19
16
|
- spec/railsapps/rails_50/.bundle
|
20
17
|
- spec/railsapps/rails_51/.bundle
|
18
|
+
- spec/railsapps/rails_52/.bundle
|
21
19
|
bundler_args: --without guard --path=.bundle
|
22
20
|
script: "rake"
|
data/Changelog.md
CHANGED
@@ -1,9 +1,17 @@
|
|
1
1
|
### development version
|
2
2
|
|
3
|
-
[full changelog](https://github.com/Mange/roadie-rails/compare/v1.
|
3
|
+
[full changelog](https://github.com/Mange/roadie-rails/compare/v1.3.0...master)
|
4
4
|
|
5
5
|
* Nothing yet.
|
6
6
|
|
7
|
+
### 1.3.0
|
8
|
+
|
9
|
+
[full changelog](https://github.com/Mange/roadie-rails/compare/v1.2.1...v1.3.0)
|
10
|
+
|
11
|
+
* Dropped support for Rubunius and JRuby.
|
12
|
+
* They do not have many users and are a constant source of problems. If this is a problem for you, let me know and I might reconsider.
|
13
|
+
* Add support for Rails 5.2.
|
14
|
+
|
7
15
|
### 1.2.1
|
8
16
|
|
9
17
|
[full changelog](https://github.com/Mange/roadie-rails/compare/v1.2.0...v1.2.1)
|
data/README.md
CHANGED
@@ -3,8 +3,13 @@
|
|
3
3
|
[![Build history and status](https://secure.travis-ci.org/Mange/roadie-rails.png)](http://travis-ci.org/#!/Mange/roadie-rails)
|
4
4
|
[![Code Climate](https://codeclimate.com/github/Mange/roadie-rails.png)](https://codeclimate.com/github/Mange/roadie-rails)
|
5
5
|
[![Code coverage status](https://codecov.io/github/Mange/roadie-rails/coverage.svg?branch=master)](https://codecov.io/github/Mange/roadie-rails?branch=master)
|
6
|
-
[![Gem
|
7
|
-
[![
|
6
|
+
[![Gem](https://img.shields.io/gem/v/roadie-rails.svg)](https://rubygems.org/gems/roadie-rails)
|
7
|
+
[![Passive maintenance](https://img.shields.io/badge/maintenance-Passive-yellow.svg)][passive]
|
8
|
+
|
9
|
+
|
10
|
+
|||
|
11
|
+
|---|---|
|
12
|
+
| :warning: | This gem is now in [passive maintenance mode][passive] together with `roadie`. [(more)][passive] |
|
8
13
|
|
9
14
|
> Making HTML emails comfortable for the Rails rockstars.
|
10
15
|
|
@@ -15,7 +20,7 @@ This gem hooks up your Rails application with Roadie to help you generate HTML e
|
|
15
20
|
[Add this gem to your Gemfile as recommended by Rubygems][gem] and run `bundle install`.
|
16
21
|
|
17
22
|
```ruby
|
18
|
-
gem 'roadie-rails', '~>
|
23
|
+
gem 'roadie-rails', '~> 0.0'
|
19
24
|
```
|
20
25
|
|
21
26
|
## Usage ##
|
@@ -279,12 +284,11 @@ Tested with [Travis CI](http://travis-ci.org) using [almost all combinations of]
|
|
279
284
|
* MRI 2.2
|
280
285
|
* MRI 2.3
|
281
286
|
* MRI 2.4
|
282
|
-
* JRuby (latest)
|
283
|
-
* Rubinius 3
|
284
287
|
* Rails
|
285
288
|
* 4.2
|
286
289
|
* 5.0
|
287
290
|
* 5.1
|
291
|
+
* 5.2
|
288
292
|
|
289
293
|
Let me know if you want any other combination supported officially.
|
290
294
|
|
@@ -312,7 +316,7 @@ After running `rake` for the first time and you want to keep running tests witho
|
|
312
316
|
|
313
317
|
(The MIT License)
|
314
318
|
|
315
|
-
Copyright © 2013-
|
319
|
+
Copyright © 2013-2018 [Magnus Bergmark](https://github.com/Mange) <magnus.bergmark@gmail.com>, et. al.
|
316
320
|
|
317
321
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ‘Software’), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
318
322
|
|
@@ -324,3 +328,4 @@ THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR I
|
|
324
328
|
[roadie]: http://rubygems.org/gems/roadie
|
325
329
|
[semver]: http://semver.org/
|
326
330
|
[gem]: http://rubygems.org/gems/roadie-rails
|
331
|
+
[passive]: https://github.com/Mange/roadie/issues/155
|
data/lib/roadie/rails/version.rb
CHANGED
data/roadie-rails.gemspec
CHANGED
@@ -22,9 +22,9 @@ Gem::Specification.new do |spec|
|
|
22
22
|
spec.require_paths = ["lib"]
|
23
23
|
|
24
24
|
spec.add_dependency "roadie", "~> 3.1"
|
25
|
-
spec.add_dependency "railties", ">= 3.0", "< 5.
|
25
|
+
spec.add_dependency "railties", ">= 3.0", "< 5.3"
|
26
26
|
|
27
|
-
spec.add_development_dependency "rails", ">= 4.2", "< 5.
|
27
|
+
spec.add_development_dependency "rails", ">= 4.2", "< 5.3"
|
28
28
|
spec.add_development_dependency "bundler", "~> 1.6"
|
29
29
|
spec.add_development_dependency "rspec", "~> 3.0"
|
30
30
|
spec.add_development_dependency "rspec-rails"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: roadie-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Magnus Bergmark
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-04-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: roadie
|
@@ -33,7 +33,7 @@ dependencies:
|
|
33
33
|
version: '3.0'
|
34
34
|
- - "<"
|
35
35
|
- !ruby/object:Gem::Version
|
36
|
-
version: '5.
|
36
|
+
version: '5.3'
|
37
37
|
type: :runtime
|
38
38
|
prerelease: false
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -43,7 +43,7 @@ dependencies:
|
|
43
43
|
version: '3.0'
|
44
44
|
- - "<"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '5.
|
46
|
+
version: '5.3'
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: rails
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|
@@ -53,7 +53,7 @@ dependencies:
|
|
53
53
|
version: '4.2'
|
54
54
|
- - "<"
|
55
55
|
- !ruby/object:Gem::Version
|
56
|
-
version: '5.
|
56
|
+
version: '5.3'
|
57
57
|
type: :development
|
58
58
|
prerelease: false
|
59
59
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -63,7 +63,7 @@ dependencies:
|
|
63
63
|
version: '4.2'
|
64
64
|
- - "<"
|
65
65
|
- !ruby/object:Gem::Version
|
66
|
-
version: '5.
|
66
|
+
version: '5.3'
|
67
67
|
- !ruby/object:Gem::Dependency
|
68
68
|
name: bundler
|
69
69
|
requirement: !ruby/object:Gem::Requirement
|
@@ -173,7 +173,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
173
173
|
version: '0'
|
174
174
|
requirements: []
|
175
175
|
rubyforge_project:
|
176
|
-
rubygems_version: 2.6.
|
176
|
+
rubygems_version: 2.6.14
|
177
177
|
signing_key:
|
178
178
|
specification_version: 4
|
179
179
|
summary: Making HTML emails comfortable for the Rails rockstars
|