diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-09-16 18:46:55 -0400 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-09-16 18:46:55 -0400 |
commit | 5e62e771bf14f58dd1622d2e3631309caa201349 (patch) | |
tree | 76143baae833a4cfe0e05cefb18b5a31d15b74e9 /test/dummy/bin | |
download | pokeviewer-5e62e771bf14f58dd1622d2e3631309caa201349.tar.gz pokeviewer-5e62e771bf14f58dd1622d2e3631309caa201349.tar.bz2 pokeviewer-5e62e771bf14f58dd1622d2e3631309caa201349.zip |
Initial commit
Diffstat (limited to 'test/dummy/bin')
-rwxr-xr-x | test/dummy/bin/bundle | 3 | ||||
-rwxr-xr-x | test/dummy/bin/rails | 4 | ||||
-rwxr-xr-x | test/dummy/bin/rake | 4 | ||||
-rwxr-xr-x | test/dummy/bin/setup | 38 | ||||
-rwxr-xr-x | test/dummy/bin/update | 29 | ||||
-rwxr-xr-x | test/dummy/bin/yarn | 11 |
6 files changed, 89 insertions, 0 deletions
diff --git a/test/dummy/bin/bundle b/test/dummy/bin/bundle new file mode 100755 index 0000000..66e9889 --- /dev/null +++ b/test/dummy/bin/bundle | |||
@@ -0,0 +1,3 @@ | |||
1 | #!/usr/bin/env ruby | ||
2 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) | ||
3 | load Gem.bin_path('bundler', 'bundle') | ||
diff --git a/test/dummy/bin/rails b/test/dummy/bin/rails new file mode 100755 index 0000000..0739660 --- /dev/null +++ b/test/dummy/bin/rails | |||
@@ -0,0 +1,4 @@ | |||
1 | #!/usr/bin/env ruby | ||
2 | APP_PATH = File.expand_path('../config/application', __dir__) | ||
3 | require_relative '../config/boot' | ||
4 | require 'rails/commands' | ||
diff --git a/test/dummy/bin/rake b/test/dummy/bin/rake new file mode 100755 index 0000000..1724048 --- /dev/null +++ b/test/dummy/bin/rake | |||
@@ -0,0 +1,4 @@ | |||
1 | #!/usr/bin/env ruby | ||
2 | require_relative '../config/boot' | ||
3 | require 'rake' | ||
4 | Rake.application.run | ||
diff --git a/test/dummy/bin/setup b/test/dummy/bin/setup new file mode 100755 index 0000000..78c4e86 --- /dev/null +++ b/test/dummy/bin/setup | |||
@@ -0,0 +1,38 @@ | |||
1 | #!/usr/bin/env ruby | ||
2 | require 'pathname' | ||
3 | require 'fileutils' | ||
4 | include FileUtils | ||
5 | |||
6 | # path to your application root. | ||
7 | APP_ROOT = Pathname.new File.expand_path('../../', __FILE__) | ||
8 | |||
9 | def system!(*args) | ||
10 | system(*args) || abort("\n== Command #{args} failed ==") | ||
11 | end | ||
12 | |||
13 | chdir 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' | ||
38 | end | ||
diff --git a/test/dummy/bin/update b/test/dummy/bin/update new file mode 100755 index 0000000..a8e4462 --- /dev/null +++ b/test/dummy/bin/update | |||
@@ -0,0 +1,29 @@ | |||
1 | #!/usr/bin/env ruby | ||
2 | require 'pathname' | ||
3 | require 'fileutils' | ||
4 | include FileUtils | ||
5 | |||
6 | # path to your application root. | ||
7 | APP_ROOT = Pathname.new File.expand_path('../../', __FILE__) | ||
8 | |||
9 | def system!(*args) | ||
10 | system(*args) || abort("\n== Command #{args} failed ==") | ||
11 | end | ||
12 | |||
13 | chdir 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' | ||
29 | end | ||
diff --git a/test/dummy/bin/yarn b/test/dummy/bin/yarn new file mode 100755 index 0000000..c2bacef --- /dev/null +++ b/test/dummy/bin/yarn | |||
@@ -0,0 +1,11 @@ | |||
1 | #!/usr/bin/env ruby | ||
2 | VENDOR_PATH = File.expand_path('..', __dir__) | ||
3 | Dir.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 | ||
11 | end | ||