about summary refs log tree commit diff stats
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/bundle3
-rwxr-xr-xbin/rails9
-rwxr-xr-xbin/rake9
-rwxr-xr-xbin/setup38
-rwxr-xr-xbin/spring17
-rwxr-xr-xbin/update29
-rwxr-xr-xbin/yarn11
7 files changed, 116 insertions, 0 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 new file mode 100755 index 0000000..5badb2f --- /dev/null +++ b/bin/rails
@@ -0,0 +1,9 @@
1#!/usr/bin/env ruby
2begin
3 load File.expand_path('../spring', __FILE__)
4rescue LoadError => e
5 raise unless e.message.include?('spring')
6end
7APP_PATH = File.expand_path('../config/application', __dir__)
8require_relative '../config/boot'
9require 'rails/commands'
diff --git a/bin/rake b/bin/rake new file mode 100755 index 0000000..d87d5f5 --- /dev/null +++ b/bin/rake
@@ -0,0 +1,9 @@
1#!/usr/bin/env ruby
2begin
3 load File.expand_path('../spring', __FILE__)
4rescue LoadError => e
5 raise unless e.message.include?('spring')
6end
7require_relative '../config/boot'
8require 'rake'
9Rake.application.run
diff --git a/bin/setup b/bin/setup new file mode 100755 index 0000000..78c4e86 --- /dev/null +++ b/bin/setup
@@ -0,0 +1,38 @@
1#!/usr/bin/env ruby
2require 'pathname'
3require 'fileutils'
4include FileUtils
5
6# path to your application root.
7APP_ROOT = Pathname.new File.expand_path('../../', __FILE__)
8
9def system!(*args)
10 system(*args) || abort("\n== Command #{args} failed ==")
11end
12
13chdir APP_ROOT do
14 # This script is a starting point to setup your application.
15 # Add necessary setup steps to this file.
16
17 puts '== Installing dependencies =='
18 system! 'gem install bundler --conservative'
19 system('bundle check') || system!('bundle install')
20
21 # Install JavaScript dependencies if using Yarn
22 # system('bin/yarn')
23
24
25 # puts "\n== Copying sample files =="
26 # unless File.exist?('config/database.yml')
27 # cp 'config/database.yml.sample', 'config/database.yml'
28 # end
29
30 puts "\n== Preparing database =="
31 system! 'bin/rails db:setup'
32
33 puts "\n== Removing old logs and tempfiles =="
34 system! 'bin/rails log:clear tmp:clear'
35
36 puts "\n== Restarting application server =="
37 system! 'bin/rails restart'
38end
diff --git a/bin/spring b/bin/spring new file mode 100755 index 0000000..fb2ec2e --- /dev/null +++ b/bin/spring
@@ -0,0 +1,17 @@
1#!/usr/bin/env ruby
2
3# This file loads spring without using Bundler, in order to be fast.
4# It gets overwritten when you run the `spring binstub` command.
5
6unless defined?(Spring)
7 require 'rubygems'
8 require 'bundler'
9
10 lockfile = Bundler::LockfileParser.new(Bundler.default_lockfile.read)
11 spring = lockfile.specs.detect { |spec| spec.name == "spring" }
12 if spring
13 Gem.use_paths Gem.dir, Bundler.bundle_path.to_s, *Gem.path
14 gem 'spring', spring.version
15 require 'spring/binstub'
16 end
17end
diff --git a/bin/update b/bin/update new file mode 100755 index 0000000..a8e4462 --- /dev/null +++ b/bin/update
@@ -0,0 +1,29 @@
1#!/usr/bin/env ruby
2require 'pathname'
3require 'fileutils'
4include FileUtils
5
6# path to your application root.
7APP_ROOT = Pathname.new File.expand_path('../../', __FILE__)
8
9def system!(*args)
10 system(*args) || abort("\n== Command #{args} failed ==")
11end
12
13chdir APP_ROOT do
14 # This script is a way to update your development environment automatically.
15 # Add necessary update steps to this file.
16
17 puts '== Installing dependencies =='
18 system! 'gem install bundler --conservative'
19 system('bundle check') || system!('bundle install')
20
21 puts "\n== Updating database =="
22 system! 'bin/rails db:migrate'
23
24 puts "\n== Removing old logs and tempfiles =="
25 system! 'bin/rails log:clear tmp:clear'
26
27 puts "\n== Restarting application server =="
28 system! 'bin/rails restart'
29end
diff --git a/bin/yarn b/bin/yarn new file mode 100755 index 0000000..c2bacef --- /dev/null +++ b/bin/yarn
@@ -0,0 +1,11 @@
1#!/usr/bin/env ruby
2VENDOR_PATH = File.expand_path('..', __dir__)
3Dir.chdir(VENDOR_PATH) do
4 begin
5 exec "yarnpkg #{ARGV.join(" ")}"
6 rescue Errno::ENOENT
7 $stderr.puts "Yarn executable was not detected in the system."
8 $stderr.puts "Download Yarn at https://yarnpkg.com/en/docs/install"
9 exit 1
10 end
11end