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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: db4bdb4541437adbee7068c17988232ed83871f17ca7131eaa64e2371aeabdc3
4
- data.tar.gz: c58b66065fc1232c637548ac8e982fdf159aa7a8de870a6b966d7b8add01b971
3
+ metadata.gz: ef45c51e824ccecc31a30329a3f3ba9472ebf557797bc9b272cb2144e766d66e
4
+ data.tar.gz: 65da7a715d907fb7ee55059e59b084ba0ba522ddc5418db861b55df2f4f1c01c
5
5
  SHA512:
6
- metadata.gz: 8da33a59375c6545637eb879a71cc69e7c2dbb3bb6de605a3928cfa1873a8fa3273a4f6935e22db33dca108532cdd7a03112939670461cc7e4f5a1679d75ca29
7
- data.tar.gz: 212dfe77a050b4967fe7460bf92fd14c81dfd38ee966cae3483394428a85cc8940b6c1438cb957205b70b362cd904b0ea1d2709ac61b519c690ee32bba156abd
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 EXFEL VMs using Capistrano3 throw username/password authentication.
4
- The standard EXFEL VMs for web applications is Ubuntu 22 with Apache web server.
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.0', require: false
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
@@ -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 EXFEL Virtual Machines'
13
- spec.description = 'Deployment of Ruby on Rails Applications in EXFEL Virtual Machines ' \
14
- '(CentOS 7 + Apache + RVM + Phusion Passenger) ' \
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'
@@ -3,6 +3,6 @@
3
3
  module Capistrano
4
4
  # Capistrano::Exfel version information
5
5
  module Exfel
6
- VERSION = '0.5.0'
6
+ VERSION = '0.5.1'
7
7
  end
8
8
  end
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # EXFEL application specific tasks
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.0
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 EXFEL Virtual Machines (CentOS
43
- 7 + Apache + RVM + Phusion Passenger) using Capistrano3 and LDAP
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-0.4.0.gem
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 EXFEL Virtual Machines
98
+ summary: Deploy Ruby on Rails 4, 5, 6 and 7 Applications in EuXFEL Virtual Machines
99
99
  test_files: []
Binary file