panter-rails-deploy 1.3.4 → 1.4.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: e45722b1315ff166f44ceb499313f258f3797031
4
- data.tar.gz: ea5c10c7325768e8db1b0bf1b4aff928b7446655
3
+ metadata.gz: 1a50ab3b7d940b7e5ec80bf247589a02d25e258d
4
+ data.tar.gz: 594ec36d2447e7ed1cc70bbfe0e2ee42a7505888
5
5
  SHA512:
6
- metadata.gz: 11ee40c0c60d5918de2b2934218bc940d548364e7bf8aaff4076cd0f274fd0bb1ced72b70535d7b2689836b5837d68b05b1538383935ae05d7516362bfa218f7
7
- data.tar.gz: cf05fcc0abdc942bfc8535a1075a2712d49b4ae77b22ca663ac5d9d7d46c5679e82334c712584c129250985ba824513f84c73f3fb64f0ad5aec2b13055dae516
6
+ metadata.gz: 3f4c7de2a0d6ba2012f5afe5e75f83a946cc01aebc2b72af53d558ba39f98f26fd0df13fe1197c10478267446ab6c6aba7b08a3b7e95f1ea42f609f41532d538
7
+ data.tar.gz: a2cba5744113c4303b213ca0f5f04fe3533e1af0cb645bb1445d8e82f57466df10246df09df256c1acb5f76b40df24d08d05f405a690a875ab0874302a24ebd3
@@ -17,14 +17,9 @@ script:
17
17
 
18
18
  env:
19
19
  - rails=4.2.0
20
- - rails=5.0.0
20
+ - rails=5.2.0
21
21
 
22
22
  rvm:
23
- - 2.1
24
- - 2.2.6
25
- - 2.3.3
26
-
27
- matrix:
28
- exclude:
29
- - env: rails=5.0.0
30
- rvm: 2.1
23
+ - 2.3
24
+ - 2.4
25
+ - 2.5
@@ -1,3 +1,8 @@
1
+ ### v1.4.0
2
+
3
+ - Replace deprecated therubyracer gem with mini_racer
4
+ - This gem now requires at least Ruby 2.3 due to the mini_racer dependency
5
+
1
6
  ### v1.3.4
2
7
 
3
8
  - Also fix the deprecation warning for without-assets/without-rails
data/README.md CHANGED
@@ -1,7 +1,8 @@
1
1
  # Panter Rails Deploy
2
2
 
3
- [![Build Status](https://travis-ci.org/panter/panter-rails-deploy.svg?branch=master)](https://travis-ci.org/panter/panter-rails-deploy)
4
3
  [![Gem Version](https://badge.fury.io/rb/panter-rails-deploy.svg)](https://rubygems.org/gems/panter-rails-deploy)
4
+ [![Build Status](https://travis-ci.org/panter/panter-rails-deploy.svg?branch=master)](https://travis-ci.org/panter/panter-rails-deploy)
5
+ [![Dependency Status](https://gemnasium.com/panter/panter-rails-deploy.svg)](https://gemnasium.com/panter/panter-rails-deploy)
5
6
 
6
7
  This gem sets up everything you need to deploy your application on the Panter Rails hosting:
7
8
 
@@ -12,7 +13,7 @@ This gem sets up everything you need to deploy your application on the Panter Ra
12
13
  - [ruby-install](https://github.com/capistrano-plugins/capistrano-rbenv-install)
13
14
  - [unicorn-rails](https://github.com/samuelkadolph/unicorn-rails)
14
15
  - [dotenv-rails](https://github.com/bkeepers/dotenv)
15
- - [therubyracer](https://github.com/cowboyd/therubyracer) for [ExecJS](https://github.com/rails/execjs), used for asset compilation on the server
16
+ - [mini_racer](https://github.com/discourse/mini_racer) for [ExecJS](https://github.com/rails/execjs), used for asset compilation on the server
16
17
 
17
18
  ## How to use
18
19
 
@@ -32,7 +33,7 @@ This gem sets up everything you need to deploy your application on the Panter Ra
32
33
  bundle exec cap install
33
34
  ```
34
35
 
35
- - You can replace the contents of `Capfile` with one of these lines:
36
+ - Load the gem in your `Capfile` with one of these lines:
36
37
 
37
38
  For a standard Rails project with asset compilation:
38
39
 
@@ -1,13 +1,12 @@
1
1
  Gem::Specification.new do |gem|
2
2
  gem.name = 'panter-rails-deploy'
3
- gem.version = '1.3.4'
4
- gem.date = '2017-01-06'
3
+ gem.version = '1.4.0'
5
4
  gem.summary = 'Capistrano setup for Panter Rails Hosting'
6
5
  gem.authors = [ 'Markus Koller', 'Beat Seeliger' ]
7
6
  gem.email = 'mak@panter.ch'
8
7
  gem.homepage = 'https://github.com/panter/panter-rails-deploy'
9
8
  gem.license = 'MIT'
10
- gem.required_ruby_version = '>= 2.0.0'
9
+ gem.required_ruby_version = '>= 2.3.0'
11
10
 
12
11
  gem.files = `git ls-files`.split($/)
13
12
  gem.require_paths = [ 'lib' ]
@@ -23,7 +22,7 @@ Gem::Specification.new do |gem|
23
22
  gem.add_runtime_dependency 'highline'
24
23
 
25
24
  # Asset pipeline dependencies
26
- gem.add_runtime_dependency 'therubyracer'
25
+ gem.add_runtime_dependency 'mini_racer'
27
26
 
28
27
  # Development dependencies
29
28
  gem.add_development_dependency 'pry-byebug'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: panter-rails-deploy
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.4
4
+ version: 1.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Markus Koller
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-01-06 00:00:00.000000000 Z
12
+ date: 2018-10-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: capistrano
@@ -124,7 +124,7 @@ dependencies:
124
124
  - !ruby/object:Gem::Version
125
125
  version: '0'
126
126
  - !ruby/object:Gem::Dependency
127
- name: therubyracer
127
+ name: mini_racer
128
128
  requirement: !ruby/object:Gem::Requirement
129
129
  requirements:
130
130
  - - ">="
@@ -191,7 +191,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
191
191
  requirements:
192
192
  - - ">="
193
193
  - !ruby/object:Gem::Version
194
- version: 2.0.0
194
+ version: 2.3.0
195
195
  required_rubygems_version: !ruby/object:Gem::Requirement
196
196
  requirements:
197
197
  - - ">="