summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorerdgeist <erdgeist@erdgeist.org>2026-06-25 04:34:24 +0200
committererdgeist <erdgeist@erdgeist.org>2026-06-25 04:34:24 +0200
commit3f236c7a0e544db94ef822f120d649ac5ee958f7 (patch)
tree37c91c623f880cb75ba7dd63ee6a42eb0136e2a9 /bin
parent75670df5b8a5700c48ac8cb41f8d1732b5738402 (diff)
Upgrade to Rails 4.2.11.3
- Bump rails 3.2.22.5 → 4.2.11.3 - Replace globalize3 with globalize ~> 5.0 (gem renamed at 5.0) - Upgrade routing-filter ~> 0.3 → ~> 0.6 - Upgrade sass-rails, coffee-rails to 4.x - Upgrade awesome_nested_set 2.x → 3.x (Rails 4 required) - Add jquery-rails for UJS support - Pin nokogiri ~> 1.10.10, loofah ~> 2.20.0, rails-html-sanitizer ~> 1.4.4 - Add config/secrets.yml (gitignored), eager_load, serve_static_files - Fix routes: add via: to all match calls, remove legacy catch-all routes - Add admin named route, fix rvm dotfiles - Fix ActiveRecord::FixtureSet rename in test_helper - Set active_support.test_order and active_record.raise_in_transactional_callbacks
Diffstat (limited to 'bin')
-rwxr-xr-xbin/bundle3
-rwxr-xr-xbin/rails31
-rwxr-xr-xbin/rake4
-rwxr-xr-xbin/setup29
4 files changed, 39 insertions, 28 deletions
diff --git a/bin/bundle b/bin/bundle
new file mode 100755
index 0000000..66e9889
--- /dev/null
+++ b/bin/bundle
@@ -0,0 +1,3 @@
1#!/usr/bin/env ruby
2ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
3load Gem.bin_path('bundler', 'bundle')
diff --git a/bin/rails b/bin/rails
index 7fd59cc..5191e69 100755
--- a/bin/rails
+++ b/bin/rails
@@ -1,29 +1,4 @@
1#!/usr/bin/env ruby 1#!/usr/bin/env ruby
2# frozen_string_literal: true 2APP_PATH = File.expand_path('../../config/application', __FILE__)
3 3require_relative '../config/boot'
4# 4require 'rails/commands'
5# This file was generated by Bundler.
6#
7# The application 'rails' is installed as part of a gem, and
8# this file is here to facilitate running it.
9#
10
11require "pathname"
12ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
13 Pathname.new(__FILE__).realpath)
14
15bundle_binstub = File.expand_path("../bundle", __FILE__)
16
17if File.file?(bundle_binstub)
18 if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/
19 load(bundle_binstub)
20 else
21 abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
22Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
23 end
24end
25
26require "rubygems"
27require "bundler/setup"
28
29load Gem.bin_path("railties", "rails")
diff --git a/bin/rake b/bin/rake
new file mode 100755
index 0000000..1724048
--- /dev/null
+++ b/bin/rake
@@ -0,0 +1,4 @@
1#!/usr/bin/env ruby
2require_relative '../config/boot'
3require 'rake'
4Rake.application.run
diff --git a/bin/setup b/bin/setup
new file mode 100755
index 0000000..acdb2c1
--- /dev/null
+++ b/bin/setup
@@ -0,0 +1,29 @@
1#!/usr/bin/env ruby
2require 'pathname'
3
4# path to your application root.
5APP_ROOT = Pathname.new File.expand_path('../../', __FILE__)
6
7Dir.chdir APP_ROOT do
8 # This script is a starting point to setup your application.
9 # Add necessary setup steps to this file:
10
11 puts "== Installing dependencies =="
12 system "gem install bundler --conservative"
13 system "bundle check || bundle install"
14
15 # puts "\n== Copying sample files =="
16 # unless File.exist?("config/database.yml")
17 # system "cp config/database.yml.sample config/database.yml"
18 # end
19
20 puts "\n== Preparing database =="
21 system "bin/rake db:setup"
22
23 puts "\n== Removing old logs and tempfiles =="
24 system "rm -f log/*"
25 system "rm -rf tmp/cache"
26
27 puts "\n== Restarting application server =="
28 system "touch tmp/restart.txt"
29end