fly-atc 0.0.6-arm64-darwin → 0.0.8-arm64-darwin

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c7d4330b6b2dcac77077059c58564a058bdfe15833441054ef61b024953ba5af
4
- data.tar.gz: 7d72ff008a0ff2f5ccc9c48faa08f81a335ded0c111b06b45c957dc0cdca42e8
3
+ metadata.gz: 0bfac43e50dfb76683336a86000d42f5e7a5913834f7badff37777af38d23828
4
+ data.tar.gz: 47fc3d157ce9fe5f44d717874bf9590580061ab60b3e3e285fc886890bd2fdd7
5
5
  SHA512:
6
- metadata.gz: 89d3f260f3b499fd0565d31703d1e62102515fe9ba947d04285b9d7c59697894ffc86fd7b747d4325403797c8956fd3b3dffb59e313147bf2cf780f5c7c66959
7
- data.tar.gz: 712ae1294db02c3ae567613f2b2c8656a630fe6ae9c5f40a58507e65f768d20150cf2771ddb4aabebdf94a71628e4ccca1c5ba88a9007edd0ed5b1637c15f0de
6
+ metadata.gz: 9e1114dfba60cbc2ac56c807837eb7d429ade84de89872eff16015b73853306bddcbb1ab7c83fbc93518ff113a9804c530f0585a8bd09e4c1d8a4d4566bad54e
7
+ data.tar.gz: 69fba0f297585761e4c9161d57f1d817d1cef7c5848a2cad32332e40a75224bab844b344537349571975882f873a2c04d679c52b8064872b589de01a783a04e5
data/README.md CHANGED
@@ -24,8 +24,6 @@ bin/rails generate atc
24
24
 
25
25
  Edit `config/atc.yml` as needed.
26
26
 
27
- Fly.io's dockerfile generators will be able to help with this.
28
-
29
27
  For approximately $1 US per month, you can run:
30
28
  * [1 performance machine with 2Gb of RAM, 10GB of bandwidth, and 5GB of storage for 15 hours/month](https://fly.io/calculator?m=0_0_0_0_0&f=c&b=iad.10&a=no_none&r=shared_0_1_iad&t=10_100_5&u=0_1_100&g=1_performance_15_1_2048_iad_1024_0).
31
29
  * [1 shared machine with 1Gb of RAM, 10GB of bandwidth, and 5GB of storage for 80 hours/month](https://fly.io/calculator?m=0_0_0_0_0&f=c&b=iad.10&a=no_none&r=shared_0_1_iad&t=10_100_5&u=0_1_100&g=1_shared_80_1_1048_iad_1024_0).
Binary file
@@ -1,3 +1,3 @@
1
1
  module FlyAtc
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.8"
3
3
  end
@@ -7,8 +7,8 @@ class AtcGenerator < Rails::Generators::Base
7
7
  @routes = IO.read("config/routes.rb")
8
8
 
9
9
  unless @routes.include? "fly_atc_scope"
10
- _, prolog, routes = routes.split(/(.*Rails.application.routes.draw do\n)/m,2)
11
- routes, epilog, _ = @routes.split(/^(end.*)/m,2)
10
+ _, prolog, routes = @routes.split(/(.*Rails.application.routes.draw do\n)/m,2)
11
+ routes, epilog, _ = routes.split(/^(end.*)/m,2)
12
12
  routes = routes.split(/\n\s*\n/)
13
13
  scoped = routes.select {|route| route =~ /^\s*\w/ && !route.include?('as:')}
14
14
 
@@ -40,5 +40,15 @@ class AtcGenerator < Rails::Generators::Base
40
40
  end
41
41
 
42
42
  template "application.html.erb", "app/views/layouts/application.html.erb"
43
+
44
+ ### bin/fly-atc
45
+
46
+ unless File.exist?("bin/fly-atc")
47
+ system "bundle binstubs fly-atc"
48
+ end
49
+
50
+ ### Dockerfile
51
+
52
+ gsub_file "Dockerfile", "bin/thrust", "bin/fly-atc"
43
53
  end
44
54
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fly-atc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.8
5
5
  platform: arm64-darwin
6
6
  authors:
7
7
  - Sam Ruby