Compare commits
8 Commits
dependabot
...
dependabot
Author | SHA1 | Date | |
---|---|---|---|
b507884f19 | |||
05bc8cbc66 | |||
45a87d6d98 | |||
00820ae234 | |||
27cceb83fc | |||
f3561ce54a | |||
9b7d4af370 | |||
dcbb2816ef |
@ -1 +1 @@
|
||||
2.7.5
|
||||
2.7.6
|
||||
|
22
Capfile
22
Capfile
@ -1,22 +0,0 @@
|
||||
# Load DSL and set up stages
|
||||
require "capistrano/setup"
|
||||
|
||||
# Include default deployment tasks
|
||||
require "capistrano/deploy"
|
||||
|
||||
require "capistrano/scm/git"
|
||||
install_plugin Capistrano::SCM::Git
|
||||
|
||||
# Load custom tasks from `lib/capistrano/tasks` if you have any defined
|
||||
Dir.glob("lib/capistrano/tasks/*.rake").each { |r| import r }
|
||||
|
||||
require 'capistrano/rails'
|
||||
require 'capistrano/passenger'
|
||||
|
||||
Rake::Task["deploy:migrate"].clear_actions
|
||||
namespace :deploy do
|
||||
desc "Override Capistrano's default behavior, do not migrate on deploy"
|
||||
task :migrate do
|
||||
puts 'No migrate'
|
||||
end
|
||||
end
|
13
Gemfile
13
Gemfile
@ -1,8 +1,8 @@
|
||||
source 'https://rubygems.org'
|
||||
ruby '2.7.5'
|
||||
ruby '2.7.6'
|
||||
|
||||
gem 'rails' , "~> 5.2"
|
||||
|
||||
gem 'rails' , "> 5.2"
|
||||
gem "passenger" , "6.0.13"
|
||||
|
||||
gem 'sass-rails'
|
||||
gem 'uglifier'
|
||||
@ -15,7 +15,7 @@ gem 'opal', '~> 0.11.0'
|
||||
gem 'opal-rails'
|
||||
gem 'opal-jquery'
|
||||
gem 'opal-browser' , "0.2.0"
|
||||
|
||||
gem "skylight"
|
||||
gem "rubyx" , "0.6" , git: "https://github.com/ruby-x/rubyx" , require: false
|
||||
gem "rubyx-debugger" , "0.3" , git: "https://github.com/ruby-x/rubyx-debugger" , require: false
|
||||
gem "rx-file" , git: "https://github.com/ruby-x/rx-file"
|
||||
@ -23,9 +23,14 @@ gem "rx-file" , git: "https://github.com/ruby-x/rx-file"
|
||||
gem "haml-coderay"
|
||||
gem 'mini_racer'
|
||||
|
||||
group :production do
|
||||
gem "passenger" , "6.0.15"
|
||||
end
|
||||
|
||||
group :development, :test do
|
||||
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
|
||||
gem 'rspec-rails'
|
||||
gem "puma"
|
||||
end
|
||||
|
||||
group :test do
|
||||
|
26
Gemfile.lock
26
Gemfile.lock
@ -122,7 +122,7 @@ GEM
|
||||
rb-fsevent (~> 0.9, >= 0.9.4)
|
||||
rb-inotify (~> 0.9, >= 0.9.7)
|
||||
ruby_dep (~> 1.2)
|
||||
loofah (2.16.0)
|
||||
loofah (2.19.1)
|
||||
crass (~> 1.0.2)
|
||||
nokogiri (>= 1.5.9)
|
||||
mail (2.7.1)
|
||||
@ -138,7 +138,7 @@ GEM
|
||||
libv8 (>= 6.9.411)
|
||||
minitest (5.15.0)
|
||||
nio4r (2.5.8)
|
||||
nokogiri (1.13.3)
|
||||
nokogiri (1.13.10)
|
||||
mini_portile2 (~> 2.8.0)
|
||||
racc (~> 1.4)
|
||||
opal (0.11.4)
|
||||
@ -169,11 +169,13 @@ GEM
|
||||
paggio (0.2.6)
|
||||
parser (2.3.3.1)
|
||||
ast (~> 2.2)
|
||||
passenger (6.0.13)
|
||||
passenger (6.0.15)
|
||||
rack
|
||||
rake (>= 0.8.1)
|
||||
public_suffix (4.0.6)
|
||||
racc (1.6.0)
|
||||
puma (6.0.0)
|
||||
nio4r (~> 2.0)
|
||||
racc (1.6.1)
|
||||
rack (2.2.3)
|
||||
rack-test (1.1.0)
|
||||
rack (>= 1.0, < 3)
|
||||
@ -193,7 +195,7 @@ GEM
|
||||
rails-dom-testing (2.0.3)
|
||||
activesupport (>= 4.2.0)
|
||||
nokogiri (>= 1.6)
|
||||
rails-html-sanitizer (1.4.2)
|
||||
rails-html-sanitizer (1.4.3)
|
||||
loofah (~> 2.3)
|
||||
railties (5.2.7)
|
||||
actionpack (= 5.2.7)
|
||||
@ -234,6 +236,8 @@ GEM
|
||||
sprockets-rails (>= 2.0, < 4.0)
|
||||
tilt (>= 1.1, < 3)
|
||||
sexp_processor (4.11.0)
|
||||
skylight (5.3.4)
|
||||
activesupport (>= 5.2.0)
|
||||
sourcemap (0.1.1)
|
||||
spring (2.0.2)
|
||||
activesupport (>= 4.2)
|
||||
@ -253,7 +257,7 @@ GEM
|
||||
thor (1.2.1)
|
||||
thread_safe (0.3.6)
|
||||
tilt (2.0.9)
|
||||
tzinfo (1.2.10)
|
||||
tzinfo (1.2.9)
|
||||
thread_safe (~> 0.1)
|
||||
uglifier (4.1.20)
|
||||
execjs (>= 0.3.0, < 3)
|
||||
@ -285,13 +289,15 @@ DEPENDENCIES
|
||||
opal-browser (= 0.2.0)
|
||||
opal-jquery
|
||||
opal-rails
|
||||
passenger (= 6.0.13)
|
||||
rails (> 5.2)
|
||||
passenger (= 6.0.15)
|
||||
puma
|
||||
rails (~> 5.2)
|
||||
rspec-rails
|
||||
rubyx (= 0.6)!
|
||||
rubyx-debugger (= 0.3)!
|
||||
rx-file!
|
||||
sass-rails
|
||||
skylight
|
||||
spring
|
||||
spring-watcher-listen (~> 2.0.0)
|
||||
susy (= 2.2.12)
|
||||
@ -299,7 +305,7 @@ DEPENDENCIES
|
||||
web-console (>= 3.3.0)
|
||||
|
||||
RUBY VERSION
|
||||
ruby 2.7.5p203
|
||||
ruby 2.7.6p219
|
||||
|
||||
BUNDLED WITH
|
||||
2.2.23
|
||||
2.3.25
|
||||
|
@ -9,7 +9,7 @@ require 'mina/rbenv' # for rbenv support. (https://rbenv.org)
|
||||
# branch - Branch name to deploy. (needed by mina/git)
|
||||
|
||||
set :application_name, 'ruby-x'
|
||||
set :domain, '192.168.128.100'
|
||||
set :domain, '192.168.129.10'
|
||||
set :deploy_to, '/home/feenix/ruby-x'
|
||||
set :repository, "https://github.com/ruby-x/ruby-x.github.io.git"
|
||||
set :branch, 'master'
|
||||
|
3
config/skylight.yml
Normal file
3
config/skylight.yml
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
# The authentication token for the application.
|
||||
authentication: iBGuWCzXDzUt--hY4yajFOPesFETdCZwhx0P0dwDFlU
|
Reference in New Issue
Block a user