We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f325d72 commit f74b26bCopy full SHA for f74b26b
.gitignore
@@ -321,7 +321,6 @@ x86/
321
[Aa][Rr][Mm]/
322
[Aa][Rr][Mm]64/
323
bld/
324
-[Bb]in/
325
[Oo]bj/
326
[Ll]og/
327
bin/dev
@@ -0,0 +1,8 @@
1
+#!/usr/bin/env sh
2
+
3
+if ! gem list foreman -i --silent; then
4
+ echo "Installing foreman..."
5
+ gem install foreman
6
+fi
7
8
+exec foreman start -f Procfile.dev "$@"
bin/importmap
@@ -0,0 +1,4 @@
+#!/usr/bin/env ruby
+require_relative "../config/application"
+require "importmap/commands"
0 commit comments