fly-atc 0.0.6-x86_64-darwin → 0.0.7-x86_64-darwin

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f2026ddcc009a516e6ef1c3a5a08dd62779e4b81b46ee13ddb6fa676b16eb6df
4
- data.tar.gz: 6fc53b8a05e77606b6c27860dc24140081c5d594e3815531483ec51854994d0d
3
+ metadata.gz: e9d82d843478316e898bb9925dffa05f3d70e24181a581d6d7a0450d6a9ef423
4
+ data.tar.gz: f18eda7dc13827c77f3879d245337e54f9a50d9634b70517e69f8a47b330abd0
5
5
  SHA512:
6
- metadata.gz: f3e6534809a4821b2fca1b311bfb0873f671d87aa2e81ebd8d7cbb14a8416896e5c69dcadd7b7ccfd2f4928fcc4602d346873a42684b691b346a2291294bd9bb
7
- data.tar.gz: 21e5fce393724ab7803278a3f59e1499f6dddf5de0a166e8e53253022b392ee275d9de028c3ea3e3c92ceeafd42790d76fcfd1ac84405c59ccda28b6116382ae
6
+ metadata.gz: 83f4a49d48fd01ed3e6b7708270160d8fa76947fbf1f96a54c3ac910d285e5573ee6698aacc49950ad8f218fd51d30dc0625ff6cf674d81b783912e7f3a992a0
7
+ data.tar.gz: ef98192925af4072a48322ef9d1065f314ea5d288419851667172710f87e1ec6d3c7f52fc03ac32fef760f5802587042fb449a43fbf221e4ad196234b1559e3d
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.7"
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.7
5
5
  platform: x86_64-darwin
6
6
  authors:
7
7
  - Sam Ruby