roadie-rails 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +10 -3
- data/Changelog.md +8 -1
- data/Gemfile +1 -1
- data/LICENSE.txt +1 -1
- data/README.md +9 -8
- data/Rakefile +1 -1
- data/lib/roadie/rails/version.rb +1 -1
- data/roadie-rails.gemspec +2 -2
- data/setup.sh +13 -3
- data/spec/integration_spec.rb +10 -3
- data/spec/railsapps/rails_40_precompiled/config/application.rb +2 -0
- data/spec/railsapps/rails_40_precompiled/config/environments/development.rb +0 -1
- data/spec/railsapps/rails_42/config/application.rb +3 -0
- data/spec/railsapps/rails_50/.gitignore +21 -0
- data/spec/railsapps/rails_50/Gemfile +8 -0
- data/spec/railsapps/rails_50/app/mailers/auto_mailer.rb +27 -0
- data/spec/railsapps/rails_50/app/mailers/mailer.rb +17 -0
- data/spec/railsapps/rails_50/bin/rails +9 -0
- data/spec/railsapps/rails_50/config.ru +9 -0
- data/spec/railsapps/rails_50/config/application.rb +13 -0
- data/spec/railsapps/rails_50/config/boot.rb +3 -0
- data/spec/railsapps/rails_50/config/database.yml +25 -0
- data/spec/railsapps/rails_50/config/environment.rb +5 -0
- data/spec/railsapps/rails_50/config/environments/development.rb +13 -0
- data/spec/railsapps/rails_50/config/initializers/assets.rb +11 -0
- data/spec/railsapps/rails_50/config/initializers/cookies_serializer.rb +4 -0
- data/spec/railsapps/rails_50/config/initializers/request_forgery_protection.rb +4 -0
- data/spec/railsapps/rails_50/config/initializers/session_store.rb +3 -0
- data/spec/railsapps/rails_50/config/routes.rb +6 -0
- data/spec/spec_helper.rb +5 -2
- metadata +39 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 23523540a5595e05e87e99d0ec6f1d051d74ab5d
|
4
|
+
data.tar.gz: ced896acf8c012884325285a1a1924245f0b7be9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7ff9e72292f4d00ef1bc2ce60c5b179686ffb54245779fb8e361f653f9aa0c09c9a1bba83956588eaf46f409e84b7af10bdbb74df27cc1c4939ee5d93dc56ea5
|
7
|
+
data.tar.gz: 530b44fd39cbc10c1ba06bdef7a553e66a57377032552d69f23e43c29cfc51e0bcda0496faf5313feeb302c5714026c1951cab8404ae41b93d1f0611600d6455
|
data/.travis.yml
CHANGED
@@ -1,15 +1,22 @@
|
|
1
|
+
sudo: false
|
1
2
|
language: ruby
|
2
3
|
rvm:
|
3
4
|
- 1.9.3
|
4
5
|
- 2.0
|
5
6
|
- 2.1
|
6
7
|
- 2.2
|
8
|
+
- 2.3.0
|
7
9
|
- jruby
|
8
10
|
- rbx
|
9
11
|
|
10
|
-
bundler_args: --without guard
|
11
|
-
script: "rake"
|
12
|
-
|
13
12
|
matrix:
|
14
13
|
allow_failures:
|
14
|
+
# Rubinius has a lot of trouble and no large following, so I'm going to
|
15
|
+
# allow failures on it until it gets more stable on Travis / Real Life(tm).
|
16
|
+
# Let me know if you need it. Patches are welcome!
|
15
17
|
- rvm: rbx
|
18
|
+
fast_finish: true
|
19
|
+
|
20
|
+
cache: bundler
|
21
|
+
bundler_args: --without guard
|
22
|
+
script: "rake"
|
data/Changelog.md
CHANGED
@@ -1,11 +1,18 @@
|
|
1
1
|
### development version
|
2
2
|
|
3
|
-
[full changelog](https://github.com/Mange/roadie-rails/compare/v1.1.
|
3
|
+
[full changelog](https://github.com/Mange/roadie-rails/compare/v1.1.1...master)
|
4
4
|
|
5
5
|
* Nothing yet.
|
6
6
|
|
7
7
|
### 1.1.0
|
8
8
|
|
9
|
+
[full changelog](https://github.com/Mange/roadie-rails/compare/v1.1.0...v1.1.1)
|
10
|
+
|
11
|
+
* Add support for Rails 5.0 (#50) — [Scott Ringwelski (sgringwe)](https://github.com/sgringwe)
|
12
|
+
* Also build on Ruby 2.3.0.
|
13
|
+
|
14
|
+
### 1.1.0
|
15
|
+
|
9
16
|
[full changelog](https://github.com/Mange/roadie-rails/compare/v1.1.0.rc2...v1.1.0)
|
10
17
|
|
11
18
|
* Bug fixes:
|
data/Gemfile
CHANGED
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
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
6
|
[![Gem Version](https://badge.fury.io/rb/roadie-rails.png)](http://badge.fury.io/rb/roadie-rails)
|
7
7
|
[![Dependency Status](https://gemnasium.com/Mange/roadie-rails.png)](https://gemnasium.com/Mange/roadie-rails)
|
8
8
|
|
@@ -280,8 +280,9 @@ Tested with [Travis CI](http://travis-ci.org) using [almost all combinations of]
|
|
280
280
|
* MRI 2.0
|
281
281
|
* MRI 2.1
|
282
282
|
* MRI 2.2
|
283
|
+
* MRI 2.3.0
|
283
284
|
* JRuby (latest)
|
284
|
-
* Rubinius (
|
285
|
+
* Rubinius (failures on Rubinius will not fail the build due to a long history of instability in `rbx`)
|
285
286
|
* Rails
|
286
287
|
* 3.0
|
287
288
|
* 3.1
|
@@ -289,6 +290,7 @@ Tested with [Travis CI](http://travis-ci.org) using [almost all combinations of]
|
|
289
290
|
* 4.0
|
290
291
|
* 4.1
|
291
292
|
* 4.2
|
293
|
+
* 5.0 (but only on Ruby 2.2+)
|
292
294
|
|
293
295
|
Let me know if you want any other combination supported officially.
|
294
296
|
|
@@ -304,20 +306,19 @@ This project follows [Semantic Versioning][semver].
|
|
304
306
|
|
305
307
|
## Running specs ##
|
306
308
|
|
307
|
-
|
309
|
+
The default `rake` task will take care of the setup for you.
|
308
310
|
|
309
311
|
```bash
|
310
|
-
|
311
|
-
rake spec
|
312
|
+
rake
|
312
313
|
```
|
313
314
|
|
315
|
+
After running `rake` for the first time and you want to keep running tests without having to install all dependencies, you may run `guard`, `rspec` or `rake spec` depending on what you prefer.
|
316
|
+
|
314
317
|
## License ##
|
315
318
|
|
316
319
|
(The MIT License)
|
317
320
|
|
318
|
-
Copyright © 2013-
|
319
|
-
|
320
|
-
* [Magnus Bergmark](https://github.com/Mange) <magnus.bergmark@gmail.com>
|
321
|
+
Copyright © 2013-2016 [Magnus Bergmark](https://github.com/Mange) <magnus.bergmark@gmail.com>, et. al.
|
321
322
|
|
322
323
|
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:
|
323
324
|
|
data/Rakefile
CHANGED
data/lib/roadie/rails/version.rb
CHANGED
data/roadie-rails.gemspec
CHANGED
@@ -20,9 +20,9 @@ Gem::Specification.new do |spec|
|
|
20
20
|
spec.require_paths = ["lib"]
|
21
21
|
|
22
22
|
spec.add_dependency "roadie", "~> 3.1"
|
23
|
-
spec.add_dependency "railties", ">= 3.0", "<
|
23
|
+
spec.add_dependency "railties", ">= 3.0", "< 5.1"
|
24
24
|
|
25
|
-
spec.add_development_dependency "rails", ">= 3.0", "<
|
25
|
+
spec.add_development_dependency "rails", ">= 3.0", "< 5.1"
|
26
26
|
spec.add_development_dependency "bundler", "~> 1.6"
|
27
27
|
spec.add_development_dependency "rspec", "~> 3.0"
|
28
28
|
spec.add_development_dependency "rspec-rails"
|
data/setup.sh
CHANGED
@@ -21,7 +21,11 @@ function install() {
|
|
21
21
|
bundle install --quiet && green " OK"
|
22
22
|
}
|
23
23
|
|
24
|
+
|
24
25
|
root=$(dirname $0)
|
26
|
+
ruby_version=$2
|
27
|
+
|
28
|
+
[ -z "$ruby_version" ] && echo "Need to pass ruby version as second parameter. This is used to skip some installs due to lack of support of gems on certain ruby versions." && exit 1;
|
25
29
|
|
26
30
|
# Set by Travis CI; interferes with the nested repos
|
27
31
|
unset BUNDLE_GEMFILE
|
@@ -32,9 +36,15 @@ if [[ $1 == "install" ]]; then
|
|
32
36
|
|
33
37
|
for app_path in $root/spec/railsapps/rails_*; do
|
34
38
|
(
|
35
|
-
|
36
|
-
|
37
|
-
|
39
|
+
header "Rails app $(basename $app_path) with ruby $ruby_version"
|
40
|
+
|
41
|
+
if [[ $app_path == *rails_50 ]] && [[ $ruby_version != "2.2.2" ]] && [[ $ruby_version != "2.3.0" ]]; then
|
42
|
+
echo "Skipping installing gems for $(basename $app_path) because dependencies are not support for ruby version $ruby_version"
|
43
|
+
else
|
44
|
+
cd $app_path
|
45
|
+
echo "Installing gems for $(basename $app_path)"
|
46
|
+
install
|
47
|
+
fi
|
38
48
|
)
|
39
49
|
done
|
40
50
|
echo ""
|
data/spec/integration_spec.rb
CHANGED
@@ -7,7 +7,7 @@ describe "Integrations" do
|
|
7
7
|
Nokogiri::HTML.parse mail.html_part.body.decoded
|
8
8
|
end
|
9
9
|
|
10
|
-
[
|
10
|
+
rails_apps = [
|
11
11
|
RailsApp.new("Rails 3.0.x", 'rails_30', runner: :script, asset_pipeline: false, digests: false),
|
12
12
|
## We do not yet support live-compilation through asset pipeline
|
13
13
|
RailsApp.new("Rails 3.1.x", 'rails_31', runner: :script, asset_pipeline: true, digests: false),
|
@@ -17,8 +17,15 @@ describe "Integrations" do
|
|
17
17
|
RailsApp.new("Rails 4.0.x (precompiled)", 'rails_40_precompiled', runner: :bin, asset_pipeline: true, digests: true),
|
18
18
|
RailsApp.new("Rails 4.1.x", 'rails_41', runner: :bin, asset_pipeline: true, digests: false),
|
19
19
|
RailsApp.new("Rails 4.2.x", 'rails_42', runner: :bin, asset_pipeline: true, digests: false),
|
20
|
-
RailsApp.new("Rails 4.2.x (with sprockets-rails 3)", 'rails_42_sprockets_rails_3', runner: :bin, asset_pipeline: true, digests: true, sprockets3: true)
|
21
|
-
]
|
20
|
+
RailsApp.new("Rails 4.2.x (with sprockets-rails 3)", 'rails_42_sprockets_rails_3', runner: :bin, asset_pipeline: true, digests: true, sprockets3: true)
|
21
|
+
]
|
22
|
+
|
23
|
+
# Rails 5 requires at least ruby version 2.2.2
|
24
|
+
if RUBY_VERSION >= "2.2.2"
|
25
|
+
rails_apps << RailsApp.new("Rails 5.0.x", 'rails_50', runner: :bin, asset_pipeline: true, digests: true, sprockets3: true)
|
26
|
+
end
|
27
|
+
|
28
|
+
rails_apps.each do |app|
|
22
29
|
describe "with #{app}" do
|
23
30
|
before { app.reset }
|
24
31
|
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
|
2
|
+
#
|
3
|
+
# If you find yourself ignoring temporary files generated by your text editor
|
4
|
+
# or operating system, you probably want to add a global ignore instead:
|
5
|
+
# git config --global core.excludesfile '~/.gitignore_global'
|
6
|
+
|
7
|
+
# Ignore bundler config.
|
8
|
+
/.bundle
|
9
|
+
|
10
|
+
# Ignore the default SQLite database.
|
11
|
+
/db/*.sqlite3
|
12
|
+
/db/*.sqlite3-journal
|
13
|
+
|
14
|
+
# Ignore all logfiles and tempfiles.
|
15
|
+
/log/*
|
16
|
+
/tmp/*
|
17
|
+
!/log/.keep
|
18
|
+
!/tmp/.keep
|
19
|
+
|
20
|
+
# Ignore Byebug command history file.
|
21
|
+
.byebug_history
|
@@ -0,0 +1,27 @@
|
|
1
|
+
class AutoMailer < ActionMailer::Base
|
2
|
+
include Roadie::Rails::Automatic
|
3
|
+
|
4
|
+
default from: 'john@example.com'
|
5
|
+
|
6
|
+
def normal_email
|
7
|
+
generate_email
|
8
|
+
end
|
9
|
+
|
10
|
+
def disabled_email
|
11
|
+
generate_email
|
12
|
+
end
|
13
|
+
|
14
|
+
private
|
15
|
+
def roadie_options
|
16
|
+
unless action_name =~ /disabled/
|
17
|
+
super.combine(url_options: {protocol: "https"})
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
def generate_email
|
22
|
+
mail(to: 'example@example.org', subject: "Notification for you") do |format|
|
23
|
+
format.html { render :normal_email }
|
24
|
+
format.text { render :normal_email }
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
class Mailer < ActionMailer::Base
|
2
|
+
include Roadie::Rails::Mailer
|
3
|
+
|
4
|
+
default from: 'john@example.com'
|
5
|
+
|
6
|
+
def normal_email
|
7
|
+
roadie_mail(to: 'example@example.org', subject: "Notification for you") do |format|
|
8
|
+
format.html
|
9
|
+
format.text
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
private
|
14
|
+
def roadie_options
|
15
|
+
super.combine(url_options: {protocol: "https"})
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,9 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
begin
|
3
|
+
load File.expand_path('../spring', __FILE__)
|
4
|
+
rescue LoadError => e
|
5
|
+
raise unless e.message.include?('spring')
|
6
|
+
end
|
7
|
+
APP_PATH = File.expand_path('../../config/application', __FILE__)
|
8
|
+
require_relative '../config/boot'
|
9
|
+
require 'rails/commands'
|
@@ -0,0 +1,9 @@
|
|
1
|
+
# This file is used by Rack-based servers to start the application.
|
2
|
+
|
3
|
+
require ::File.expand_path('../config/environment', __FILE__)
|
4
|
+
|
5
|
+
# Action Cable uses EventMachine which requires that all classes are loaded in advance
|
6
|
+
Rails.application.eager_load!
|
7
|
+
require 'action_cable/process/logging'
|
8
|
+
|
9
|
+
run Rails.application
|
@@ -0,0 +1,13 @@
|
|
1
|
+
require File.expand_path('../boot', __FILE__)
|
2
|
+
|
3
|
+
require 'rails/all'
|
4
|
+
|
5
|
+
# Require the gems listed in Gemfile, including any gems
|
6
|
+
# you've limited to :test, :development, or :production.
|
7
|
+
Bundler.require(*Rails.groups)
|
8
|
+
|
9
|
+
module Rails50
|
10
|
+
class Application < Rails::Application
|
11
|
+
config.roadie.url_options = { host: 'example.app.org' }
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# SQLite version 3.x
|
2
|
+
# gem install sqlite3
|
3
|
+
#
|
4
|
+
# Ensure the SQLite 3 gem is defined in your Gemfile
|
5
|
+
# gem 'sqlite3'
|
6
|
+
#
|
7
|
+
default: &default
|
8
|
+
adapter: sqlite3
|
9
|
+
pool: 5
|
10
|
+
timeout: 5000
|
11
|
+
|
12
|
+
development:
|
13
|
+
<<: *default
|
14
|
+
database: db/development.sqlite3
|
15
|
+
|
16
|
+
# Warning: The database defined as "test" will be erased and
|
17
|
+
# re-generated from your development database when you run "rake".
|
18
|
+
# Do not set this db to the same as development or production.
|
19
|
+
test:
|
20
|
+
<<: *default
|
21
|
+
database: db/test.sqlite3
|
22
|
+
|
23
|
+
production:
|
24
|
+
<<: *default
|
25
|
+
database: db/production.sqlite3
|
@@ -0,0 +1,13 @@
|
|
1
|
+
Rails.application.configure do
|
2
|
+
config.cache_classes = false
|
3
|
+
config.eager_load = false
|
4
|
+
config.consider_all_requests_local = true
|
5
|
+
config.action_controller.perform_caching = false
|
6
|
+
config.cache_store = :null_store
|
7
|
+
config.action_mailer.raise_delivery_errors = false
|
8
|
+
config.active_support.deprecation = :log
|
9
|
+
config.active_record.migration_error = :page_load
|
10
|
+
config.assets.debug = true
|
11
|
+
config.assets.digest = true
|
12
|
+
config.assets.raise_runtime_errors = true
|
13
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Version of your assets, change this if you want to expire all your assets.
|
4
|
+
Rails.application.config.assets.version = '1.0'
|
5
|
+
|
6
|
+
# Add additional assets to the asset load path
|
7
|
+
# Rails.application.config.assets.paths << Emoji.images_path
|
8
|
+
|
9
|
+
# Precompile additional assets.
|
10
|
+
# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
|
11
|
+
Rails.application.config.assets.precompile += %w( email.css )
|
@@ -0,0 +1,4 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# This is a new Rails 5.0 default, so introduced as a config to ensure apps made with earlier versions of Rails aren't affected when upgrading.
|
4
|
+
Rails.application.config.action_dispatch.cookies_serializer = :json
|
data/spec/spec_helper.rb
CHANGED
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.1.
|
4
|
+
version: 1.1.1
|
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: 2016-03-09 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: '
|
36
|
+
version: '5.1'
|
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: '
|
46
|
+
version: '5.1'
|
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: '3.0'
|
54
54
|
- - "<"
|
55
55
|
- !ruby/object:Gem::Version
|
56
|
-
version: '
|
56
|
+
version: '5.1'
|
57
57
|
type: :development
|
58
58
|
prerelease: false
|
59
59
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -63,7 +63,7 @@ dependencies:
|
|
63
63
|
version: '3.0'
|
64
64
|
- - "<"
|
65
65
|
- !ruby/object:Gem::Version
|
66
|
-
version: '
|
66
|
+
version: '5.1'
|
67
67
|
- !ruby/object:Gem::Dependency
|
68
68
|
name: bundler
|
69
69
|
requirement: !ruby/object:Gem::Requirement
|
@@ -264,6 +264,22 @@ files:
|
|
264
264
|
- spec/railsapps/rails_42_sprockets_rails_3/config/initializers/secret_token.rb
|
265
265
|
- spec/railsapps/rails_42_sprockets_rails_3/config/initializers/session_store.rb
|
266
266
|
- spec/railsapps/rails_42_sprockets_rails_3/config/routes.rb
|
267
|
+
- spec/railsapps/rails_50/.gitignore
|
268
|
+
- spec/railsapps/rails_50/Gemfile
|
269
|
+
- spec/railsapps/rails_50/app/mailers/auto_mailer.rb
|
270
|
+
- spec/railsapps/rails_50/app/mailers/mailer.rb
|
271
|
+
- spec/railsapps/rails_50/bin/rails
|
272
|
+
- spec/railsapps/rails_50/config.ru
|
273
|
+
- spec/railsapps/rails_50/config/application.rb
|
274
|
+
- spec/railsapps/rails_50/config/boot.rb
|
275
|
+
- spec/railsapps/rails_50/config/database.yml
|
276
|
+
- spec/railsapps/rails_50/config/environment.rb
|
277
|
+
- spec/railsapps/rails_50/config/environments/development.rb
|
278
|
+
- spec/railsapps/rails_50/config/initializers/assets.rb
|
279
|
+
- spec/railsapps/rails_50/config/initializers/cookies_serializer.rb
|
280
|
+
- spec/railsapps/rails_50/config/initializers/request_forgery_protection.rb
|
281
|
+
- spec/railsapps/rails_50/config/initializers/session_store.rb
|
282
|
+
- spec/railsapps/rails_50/config/routes.rb
|
267
283
|
- spec/railsapps/shared/all/app/mailers/auto_mailer.rb
|
268
284
|
- spec/railsapps/shared/all/app/mailers/mailer.rb
|
269
285
|
- spec/railsapps/shared/all/app/views/mailer/normal_email.html.erb
|
@@ -295,7 +311,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
295
311
|
version: '0'
|
296
312
|
requirements: []
|
297
313
|
rubyforge_project:
|
298
|
-
rubygems_version: 2.
|
314
|
+
rubygems_version: 2.4.8
|
299
315
|
signing_key:
|
300
316
|
specification_version: 4
|
301
317
|
summary: Making HTML emails comfortable for the Rails rockstars
|
@@ -412,6 +428,22 @@ test_files:
|
|
412
428
|
- spec/railsapps/rails_42_sprockets_rails_3/config/initializers/secret_token.rb
|
413
429
|
- spec/railsapps/rails_42_sprockets_rails_3/config/initializers/session_store.rb
|
414
430
|
- spec/railsapps/rails_42_sprockets_rails_3/config/routes.rb
|
431
|
+
- spec/railsapps/rails_50/.gitignore
|
432
|
+
- spec/railsapps/rails_50/Gemfile
|
433
|
+
- spec/railsapps/rails_50/app/mailers/auto_mailer.rb
|
434
|
+
- spec/railsapps/rails_50/app/mailers/mailer.rb
|
435
|
+
- spec/railsapps/rails_50/bin/rails
|
436
|
+
- spec/railsapps/rails_50/config.ru
|
437
|
+
- spec/railsapps/rails_50/config/application.rb
|
438
|
+
- spec/railsapps/rails_50/config/boot.rb
|
439
|
+
- spec/railsapps/rails_50/config/database.yml
|
440
|
+
- spec/railsapps/rails_50/config/environment.rb
|
441
|
+
- spec/railsapps/rails_50/config/environments/development.rb
|
442
|
+
- spec/railsapps/rails_50/config/initializers/assets.rb
|
443
|
+
- spec/railsapps/rails_50/config/initializers/cookies_serializer.rb
|
444
|
+
- spec/railsapps/rails_50/config/initializers/request_forgery_protection.rb
|
445
|
+
- spec/railsapps/rails_50/config/initializers/session_store.rb
|
446
|
+
- spec/railsapps/rails_50/config/routes.rb
|
415
447
|
- spec/railsapps/shared/all/app/mailers/auto_mailer.rb
|
416
448
|
- spec/railsapps/shared/all/app/mailers/mailer.rb
|
417
449
|
- spec/railsapps/shared/all/app/views/mailer/normal_email.html.erb
|