Skip to content

Install capistrano gems #144

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Apr 30, 2025
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/decidim_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
ruby-version: ${{ env.RUBY_VERSION }}
bundler-cache: true
- uses: nanasess/setup-chromedriver@v2
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
Expand Down
7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ public/assets
# Ignore webpack packs and related files
public/decidim-packs
public/packs-test
public/sw.js
public/sw.js.map
public/sw.js*
public/sw.js.map*

# Ignore NPM/yarn logs and temp files
.yarn-integrity
Expand All @@ -40,3 +40,6 @@ yarn-debug.log*
yarn-error.log

tailwind.config.js

Capfile
config/deploy*
9 changes: 9 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,15 @@ group :development do
gem "letter_opener_web"
gem "listen", "~> 3.7.1"
gem "web-console"

gem "capistrano"
gem "capistrano3-puma", "~> 6.0"
gem "capistrano-bundler"
gem "capistrano-passenger"
gem "capistrano-rails"
gem "capistrano-rails-console"
gem "capistrano-rbenv"
gem "capistrano-sidekiq"
end

group :production do
Expand Down
50 changes: 50 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ GEM
activesupport (>= 6.1)
addressable (2.8.7)
public_suffix (>= 2.0.2, < 7.0)
airbrussh (1.5.3)
sshkit (>= 1.6.1, != 1.7.0)
ast (2.4.2)
aws-eventstream (1.3.0)
aws-partitions (1.972.0)
Expand Down Expand Up @@ -112,6 +114,32 @@ GEM
activesupport (>= 3.0.0)
uniform_notifier (~> 1.11)
byebug (11.1.3)
capistrano (3.19.2)
airbrussh (>= 1.0.0)
i18n
rake (>= 10.0.0)
sshkit (>= 1.9.0)
capistrano-bundler (2.1.1)
capistrano (~> 3.1)
capistrano-passenger (0.2.1)
capistrano (~> 3.0)
capistrano-rails (1.7.0)
capistrano (~> 3.1)
capistrano-bundler (>= 1.1, < 3)
capistrano-rails-console (2.3.0)
capistrano (>= 3.5.0, < 4.0.0)
sshkit-interactive (~> 0.3.0)
capistrano-rbenv (2.2.0)
capistrano (~> 3.1)
sshkit (~> 1.3)
capistrano-sidekiq (3.0.0)
capistrano (>= 3.9.0)
capistrano-bundler
sidekiq (>= 6.0.6)
capistrano3-puma (6.0.0)
capistrano (~> 3.7)
capistrano-bundler
puma (>= 5.1, < 7.0)
capybara (3.40.0)
addressable
matrix
Expand Down Expand Up @@ -559,8 +587,13 @@ GEM
net-protocol
net-protocol (0.2.2)
timeout
net-scp (4.1.0)
net-ssh (>= 2.6.5, < 8.0.0)
net-sftp (4.0.0)
net-ssh (>= 5.0.0, < 8.0.0)
net-smtp (0.5.1)
net-protocol
net-ssh (7.3.0)
nio4r (2.7.3)
nokogiri (1.16.7-aarch64-linux)
racc (~> 1.4)
Expand Down Expand Up @@ -850,6 +883,15 @@ GEM
spring-watcher-listen (2.1.0)
listen (>= 2.7, < 4.0)
spring (>= 4)
sshkit (1.24.0)
base64
logger
net-scp (>= 1.1.2)
net-sftp (>= 2.1.2)
net-ssh (>= 2.8.0)
ostruct
sshkit-interactive (0.3.0)
sshkit (~> 1.12)
statsd-ruby (1.5.0)
strscan (3.1.2)
temple (0.10.3)
Expand Down Expand Up @@ -924,6 +966,14 @@ DEPENDENCIES
aws-sdk-s3
barnes
byebug
capistrano
capistrano-bundler
capistrano-passenger
capistrano-rails
capistrano-rails-console
capistrano-rbenv
capistrano-sidekiq
capistrano3-puma (~> 6.0)
dalli
decidim (= 0.30.0.rc3)
decidim-conferences (= 0.30.0.rc3)
Expand Down
Loading