capistrano-exfel 0.5.0 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +4 -5
- data/capistrano-exfel.gem +0 -0
- data/capistrano-exfel.gemspec +3 -3
- data/lib/capistrano/exfel/version.rb +1 -1
- data/lib/capistrano/tasks/application.rake +1 -1
- metadata +5 -5
- data/capistrano-exfel-0.4.0.gem +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ef45c51e824ccecc31a30329a3f3ba9472ebf557797bc9b272cb2144e766d66e
|
4
|
+
data.tar.gz: 65da7a715d907fb7ee55059e59b084ba0ba522ddc5418db861b55df2f4f1c01c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a89d538459f63c0b6917be0a8c837c8a35f8b7b4e426e32fcb453b2f76acf9c9cba4443d9e35e49035a3ae36e48b4d1b426a48dcc2d273a40a4573c1440b644e
|
7
|
+
data.tar.gz: e246b7ef338052d8e8b06c3256c04c189422c44db1fef61975dfb5d9d79ef3feb7af81a9525ee64f5063a7a263ab4f38591fcb496151cac46916465ab1cb0da0
|
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# Capistrano::Exfel
|
2
2
|
|
3
|
-
Deploys Ruby on Rails Applications in
|
4
|
-
The standard
|
3
|
+
Deploys Ruby on Rails Applications in EuXFEL VMs using Capistrano3 throw username/password authentication.
|
4
|
+
The standard EuXFEL VMs for web applications is Ubuntu 22 with Apache web server.
|
5
5
|
Installation of Phusion Passenger and RVM are also required to this gem.
|
6
6
|
|
7
7
|
## Installation
|
@@ -10,16 +10,16 @@ Add these lines to your application's Gemfile:
|
|
10
10
|
|
11
11
|
# Use Capistrano for deployment
|
12
12
|
gem 'capistrano', '3.18.1', require: false
|
13
|
-
gem 'capistrano-exfel', '0.5.
|
13
|
+
gem 'capistrano-exfel', '0.5.1', require: false
|
14
14
|
gem 'capistrano-rails', '1.6.3', require: false
|
15
15
|
gem 'capistrano-rvm', '0.1.2', require: false
|
16
16
|
|
17
|
-
|
18
17
|
And then execute:
|
19
18
|
|
20
19
|
```bash
|
21
20
|
$ bundle
|
22
21
|
```
|
22
|
+
|
23
23
|
Or install it yourself as:
|
24
24
|
|
25
25
|
```bash
|
@@ -33,7 +33,6 @@ Add this line to your `Capfile` for Ubuntu 22 machines:
|
|
33
33
|
# Load Ubuntu 14 tasks
|
34
34
|
require 'capistrano/exfel/ubuntu22'
|
35
35
|
|
36
|
-
|
37
36
|
This gem will reuse `capistrano-rails` and `capistrano-rvm` tasks to build the following tasks:
|
38
37
|
|
39
38
|
Task **application:deploy_first_time**:
|
Binary file
|
data/capistrano-exfel.gemspec
CHANGED
@@ -9,9 +9,9 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.version = Capistrano::Exfel::VERSION
|
10
10
|
spec.authors = ['Luis Maia', 'Maurizio Manetti']
|
11
11
|
spec.email = %w[luisgoncalo.maia@gmail.com maurizio.manetti@xfel.eu]
|
12
|
-
spec.summary = 'Deploy Ruby on Rails 4, 5, 6 and 7 Applications in
|
13
|
-
spec.description = 'Deployment of Ruby on Rails Applications in
|
14
|
-
'(
|
12
|
+
spec.summary = 'Deploy Ruby on Rails 4, 5, 6 and 7 Applications in EuXFEL Virtual Machines'
|
13
|
+
spec.description = 'Deployment of Ruby on Rails Applications in EuXFEL Virtual Machines ' \
|
14
|
+
'(Ubuntu 22.04 + Apache + RVM + Phusion Passenger) ' \
|
15
15
|
'using Capistrano3 and LDAP'
|
16
16
|
spec.homepage = 'https://github.com/luismaia/capistrano-exfel'
|
17
17
|
spec.license = 'MIT'
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
#
|
3
|
+
# EuXFEL application specific tasks
|
4
4
|
namespace :application do
|
5
5
|
# Task 'application:deploy_first_time' deploys an application for the first time in the configured server(s).
|
6
6
|
# This task besides deploying the application also make all the necessary configurations
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-exfel
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Luis Maia
|
@@ -39,8 +39,8 @@ dependencies:
|
|
39
39
|
- - "~>"
|
40
40
|
- !ruby/object:Gem::Version
|
41
41
|
version: '13.0'
|
42
|
-
description: Deployment of Ruby on Rails Applications in
|
43
|
-
|
42
|
+
description: Deployment of Ruby on Rails Applications in EuXFEL Virtual Machines (Ubuntu
|
43
|
+
22.04 + Apache + RVM + Phusion Passenger) using Capistrano3 and LDAP
|
44
44
|
email:
|
45
45
|
- luisgoncalo.maia@gmail.com
|
46
46
|
- maurizio.manetti@xfel.eu
|
@@ -54,7 +54,7 @@ files:
|
|
54
54
|
- LICENSE.txt
|
55
55
|
- README.md
|
56
56
|
- Rakefile
|
57
|
-
- capistrano-exfel
|
57
|
+
- capistrano-exfel.gem
|
58
58
|
- capistrano-exfel.gemspec
|
59
59
|
- capistrano.graph
|
60
60
|
- capistrano.png
|
@@ -95,5 +95,5 @@ requirements: []
|
|
95
95
|
rubygems_version: 3.5.7
|
96
96
|
signing_key:
|
97
97
|
specification_version: 4
|
98
|
-
summary: Deploy Ruby on Rails 4, 5, 6 and 7 Applications in
|
98
|
+
summary: Deploy Ruby on Rails 4, 5, 6 and 7 Applications in EuXFEL Virtual Machines
|
99
99
|
test_files: []
|
data/capistrano-exfel-0.4.0.gem
DELETED
Binary file
|