Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
top4ek committed Feb 4, 2017
1 parent a574c8c commit f2c78e3
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 26 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
/config/database.yml
/config/options.yml
/config/deploy.rb
/config/deploy/production.rb
/db/*.sqlite3
/db/*.sqlite3-journal
/.bundle
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.3.1
2.4.0
46 changes: 23 additions & 23 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
GEM
remote: https://rubygems.org/
specs:
activemodel (5.0.0.1)
activesupport (= 5.0.0.1)
activerecord (5.0.0.1)
activemodel (= 5.0.0.1)
activesupport (= 5.0.0.1)
activemodel (5.0.1)
activesupport (= 5.0.1)
activerecord (5.0.1)
activemodel (= 5.0.1)
activesupport (= 5.0.1)
arel (~> 7.0)
activesupport (5.0.0.1)
activesupport (5.0.1)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (~> 0.7)
minitest (~> 5.1)
tzinfo (~> 1.1)
airbrussh (1.1.1)
airbrussh (1.1.2)
sshkit (>= 1.6.1, != 1.7.0)
arel (7.1.1)
arel (7.1.4)
axiom-types (0.1.1)
descendants_tracker (~> 0.0.4)
ice_nine (~> 0.11.0)
thread_safe (~> 0.3, >= 0.3.1)
byebug (9.0.5)
capistrano (3.6.1)
byebug (9.0.6)
capistrano (3.7.2)
airbrussh (>= 1.0.0)
capistrano-harrow
i18n
rake (>= 10.0.0)
sshkit (>= 1.9.0)
capistrano-bundler (1.1.4)
capistrano-bundler (1.2.0)
capistrano (~> 3.1)
sshkit (~> 1.2)
capistrano-harrow (0.5.3)
capistrano-rails (1.1.7)
capistrano-rails (1.2.2)
capistrano (~> 3.1)
capistrano-bundler (~> 1.1)
capistrano-rvm (0.1.2)
Expand All @@ -39,39 +39,39 @@ GEM
coderay (1.1.1)
coercible (1.0.0)
descendants_tracker (~> 0.0.1)
concurrent-ruby (1.0.2)
concurrent-ruby (1.0.4)
descendants_tracker (0.0.4)
thread_safe (~> 0.3, >= 0.3.1)
equalizer (0.0.11)
faraday (0.9.2)
faraday (0.11.0)
multipart-post (>= 1.2, < 3)
i18n (0.7.0)
i18n (0.8.0)
ice_nine (0.11.2)
interception (0.5)
method_source (0.8.2)
minitest (5.9.0)
minitest (5.10.1)
multipart-post (2.0.0)
net-scp (1.2.1)
net-ssh (>= 2.6.5)
net-ssh (3.2.0)
net-ssh (4.0.1)
pg (0.18.4)
pry (0.10.4)
coderay (~> 1.1.0)
method_source (~> 0.8.1)
slop (~> 3.4)
pry-byebug (3.4.0)
pry-byebug (3.4.2)
byebug (~> 9.0)
pry (~> 0.10)
pry-rescue (1.4.4)
interception (>= 0.5)
pry
rake (11.2.2)
redis (3.3.1)
rake (12.0.0)
redis (3.3.3)
slop (3.6.0)
sshkit (1.11.2)
sshkit (1.11.5)
net-scp (>= 1.1.2)
net-ssh (>= 2.8.0)
telegram-bot-ruby (0.5.3)
telegram-bot-ruby (0.7.2)
faraday
virtus
thread_safe (0.3.5)
Expand Down Expand Up @@ -104,4 +104,4 @@ DEPENDENCIES
unicode

BUNDLED WITH
1.12.3
1.14.3
2 changes: 1 addition & 1 deletion config/deploy.rb.example
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set :scm, :git
set :format, :pretty
set :repo_url, '[email protected]:top4ek/shizoid.git'
set :rvm_type, :user
set :rvm_ruby_version, "2.3.1"
set :rvm_ruby_version, "2.4.0"
set :deploy_to, "/home/#{fetch :deploy_user}/#{fetch :application}"
set :log, "#{fetch :deploy_to}/log"
set :keep_releases, 3
Expand Down
2 changes: 1 addition & 1 deletion config/deploy/production.rb
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
set :rails_env, 'production'
server "#{fetch :server_address}", user: "#{fetch :deploy_user}", roles: %w{app db}
server "#{fetch :server_address}", user: "#{fetch :deploy_user}", roles: %w{app db}, port: 8322
2 changes: 2 additions & 0 deletions config/deploy/production.rb.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
set :rails_env, 'production'
server "#{fetch :server_address}", user: "#{fetch :deploy_user}", roles: %w{app db}

0 comments on commit f2c78e3

Please sign in to comment.