about summary refs log tree commit diff stats
path: root/bin
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2023-11-30 13:29:08 -0500
committerStar Rauchenberger <fefferburbia@gmail.com>2023-11-30 13:29:08 -0500
commit0929719a845897cc8567cf972e07a69a71f0fa6f (patch)
tree2b6f69c1d906abb6e0abf8a0f1d51725bc78087d /bin
parent01c1947537e4e23ded0c16812a7cd9d49ad88356 (diff)
downloadwittle-0929719a845897cc8567cf972e07a69a71f0fa6f.tar.gz
wittle-0929719a845897cc8567cf972e07a69a71f0fa6f.tar.bz2
wittle-0929719a845897cc8567cf972e07a69a71f0fa6f.zip
Migrate to a full rails app
Diffstat (limited to 'bin')
-rwxr-xr-xbin/bundle109
-rwxr-xr-xbin/rails16
-rwxr-xr-xbin/rake4
-rwxr-xr-xbin/setup33
4 files changed, 149 insertions, 13 deletions
diff --git a/bin/bundle b/bin/bundle new file mode 100755 index 0000000..42c7fd7 --- /dev/null +++ b/bin/bundle
@@ -0,0 +1,109 @@
1#!/usr/bin/env ruby
2# frozen_string_literal: true
3
4#
5# This file was generated by Bundler.
6#
7# The application 'bundle' is installed as part of a gem, and
8# this file is here to facilitate running it.
9#
10
11require "rubygems"
12
13m = Module.new do
14 module_function
15
16 def invoked_as_script?
17 File.expand_path($0) == File.expand_path(__FILE__)
18 end
19
20 def env_var_version
21 ENV["BUNDLER_VERSION"]
22 end
23
24 def cli_arg_version
25 return unless invoked_as_script? # don't want to hijack other binstubs
26 return unless "update".start_with?(ARGV.first || " ") # must be running `bundle update`
27 bundler_version = nil
28 update_index = nil
29 ARGV.each_with_index do |a, i|
30 if update_index && update_index.succ == i && a =~ Gem::Version::ANCHORED_VERSION_PATTERN
31 bundler_version = a
32 end
33 next unless a =~ /\A--bundler(?:[= ](#{Gem::Version::VERSION_PATTERN}))?\z/
34 bundler_version = $1
35 update_index = i
36 end
37 bundler_version
38 end
39
40 def gemfile
41 gemfile = ENV["BUNDLE_GEMFILE"]
42 return gemfile if gemfile && !gemfile.empty?
43
44 File.expand_path("../Gemfile", __dir__)
45 end
46
47 def lockfile
48 lockfile =
49 case File.basename(gemfile)
50 when "gems.rb" then gemfile.sub(/\.rb$/, ".locked")
51 else "#{gemfile}.lock"
52 end
53 File.expand_path(lockfile)
54 end
55
56 def lockfile_version
57 return unless File.file?(lockfile)
58 lockfile_contents = File.read(lockfile)
59 return unless lockfile_contents =~ /\n\nBUNDLED WITH\n\s{2,}(#{Gem::Version::VERSION_PATTERN})\n/
60 Regexp.last_match(1)
61 end
62
63 def bundler_requirement
64 @bundler_requirement ||=
65 env_var_version ||
66 cli_arg_version ||
67 bundler_requirement_for(lockfile_version)
68 end
69
70 def bundler_requirement_for(version)
71 return "#{Gem::Requirement.default}.a" unless version
72
73 bundler_gem_version = Gem::Version.new(version)
74
75 bundler_gem_version.approximate_recommendation
76 end
77
78 def load_bundler!
79 ENV["BUNDLE_GEMFILE"] ||= gemfile
80
81 activate_bundler
82 end
83
84 def activate_bundler
85 gem_error = activation_error_handling do
86 gem "bundler", bundler_requirement
87 end
88 return if gem_error.nil?
89 require_error = activation_error_handling do
90 require "bundler/version"
91 end
92 return if require_error.nil? && Gem::Requirement.new(bundler_requirement).satisfied_by?(Gem::Version.new(Bundler::VERSION))
93 warn "Activating bundler (#{bundler_requirement}) failed:\n#{gem_error.message}\n\nTo install the version of bundler this project requires, run `gem install bundler -v '#{bundler_requirement}'`"
94 exit 42
95 end
96
97 def activation_error_handling
98 yield
99 nil
100 rescue StandardError, LoadError => e
101 e
102 end
103end
104
105m.load_bundler!
106
107if m.invoked_as_script?
108 load Gem.bin_path("bundler", "bundle")
109end
diff --git a/bin/rails b/bin/rails index dc13199..efc0377 100755 --- a/bin/rails +++ b/bin/rails
@@ -1,14 +1,4 @@
1#!/usr/bin/env ruby 1#!/usr/bin/env ruby
2# This command will automatically be run when you run "rails" with Rails gems 2APP_PATH = File.expand_path("../config/application", __dir__)
3# installed from the root of your application. 3require_relative "../config/boot"
4 4require "rails/commands"
5ENGINE_ROOT = File.expand_path("..", __dir__)
6ENGINE_PATH = File.expand_path("../lib/wittle/engine", __dir__)
7APP_PATH = File.expand_path("../test/dummy/config/application", __dir__)
8
9# Set up gems listed in the Gemfile.
10ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
11require "bundler/setup" if File.exist?(ENV["BUNDLE_GEMFILE"])
12
13require "rails/all"
14require "rails/engine/commands"
diff --git a/bin/rake b/bin/rake new file mode 100755 index 0000000..4fbf10b --- /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..3cd5a9d --- /dev/null +++ b/bin/setup
@@ -0,0 +1,33 @@
1#!/usr/bin/env ruby
2require "fileutils"
3
4# path to your application root.
5APP_ROOT = File.expand_path("..", __dir__)
6
7def system!(*args)
8 system(*args, exception: true)
9end
10
11FileUtils.chdir APP_ROOT do
12 # This script is a way to set up or update your development environment automatically.
13 # This script is idempotent, so that you can run it at any time and get an expectable outcome.
14 # Add necessary setup steps to this file.
15
16 puts "== Installing dependencies =="
17 system! "gem install bundler --conservative"
18 system("bundle check") || system!("bundle install")
19
20 # puts "\n== Copying sample files =="
21 # unless File.exist?("config/database.yml")
22 # FileUtils.cp "config/database.yml.sample", "config/database.yml"
23 # end
24
25 puts "\n== Preparing database =="
26 system! "bin/rails db:prepare"
27
28 puts "\n== Removing old logs and tempfiles =="
29 system! "bin/rails log:clear tmp:clear"
30
31 puts "\n== Restarting application server =="
32 system! "bin/rails restart"
33end