Skip to content

Commit

Permalink
Switch to @transitnownash
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenyeargin committed Jul 17, 2020
1 parent 329a9ef commit bb4577a
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 17 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019 Stephen Yeargin
Copyright (c) 2019 Transit Now Nashville

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Implementation of the General Transit Feed Specification (GTFS) Realtime feed for Nashville's WeGo Public Transit bus system. Displays all vehicle locations on a map.

Requires a [separate application](https://github.com/stephenyeargin/gtfs-rails-api) to be up and running for the static data components (route, shapes, trips, etc.) to work properly. Configure the endpoint as `GTFS_BASE_URL` in your environment.
Requires a [separate application](https://github.com/transitnownash/gtfs-rails-api) to be up and running for the static data components (route, shapes, trips, etc.) to work properly. Configure the endpoint as `GTFS_BASE_URL` in your environment.

[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy)

Expand Down
4 changes: 2 additions & 2 deletions app.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "WeGo Bus Map",
"description": "Realtime map of Nashville's WeGo Public Transit bus locations.",
"repository": "https://github.com/stephenyeargin/wego-bus-map",
"logo": "https://raw.githubusercontent.com/stephenyeargin/wego-bus-map/master/public/apple-icon.png",
"repository": "https://github.com/transitnownash/wego-bus-map",
"logo": "https://raw.githubusercontent.com/transitnownash/wego-bus-map/master/public/apple-icon.png",
"keywords": ["ruby", "sinatra", "nashville", "wego", "transit", "gtfs"],
"env": {
"GTFS_BASE_URL": {
Expand Down
2 changes: 1 addition & 1 deletion config/deploy.yml-dist
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
production:
domain: "user@hostname"
deploy_to: "/path/to/wego-bus-map"
repository: "[email protected]:/stephenyeargin/wego-bus-map.git"
repository: "[email protected]:/transitnownash/wego-bus-map.git"
branch: "master"
post_deploy_script: "config/deploy/post_deploy.sh"

6 changes: 3 additions & 3 deletions views/about.erb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<p>This project is an implementation of the <a href="https://developers.google.com/transit/gtfs-realtime/">General Transit Feed Specification (GTFS) Realtime</a> feed for Nashville, Tennessee's <a href="http://www.wegotransit.com/">WeGo Public Transit</a> bus system. It displays all vehicle locations on a map in conjunction with <a href="https://developers.google.com/transit/gtfs/">GTFS Static</a> data updated periodically when the agency announces service changes.</p>

<p>The source code <a href="https://github.com/stephenyeargin/wego-bus-map">is available on GitHub</a>.
<p>The source code <a href="https://github.com/transitnownash/wego-bus-map">is available on GitHub</a>.

<h2 class="h4">Why?</h2>

Expand All @@ -35,7 +35,7 @@
</ul>
Backend
<ul>
<li><a href="https://github.com/stephenyeargin/gtfs-rails-API">GTFS Rails API</a></li>
<li><a href="https://github.com/transitnownash/gtfs-rails-api">GTFS Rails API</a></li>
<li><a href="http://sinatrarb.com/">Sinatra</a></li>
<li><a href="http://code.macournoyer.com/thin/">Thin</a></li>
<li><a href="https://www.heroku.com/">Heroku</a></li>
Expand All @@ -45,7 +45,7 @@
User Interface
<ul>
<li><a href="https://getbootstrap.com/">Bootstrap</a></li>
<li><a href="https://fontawesome.com/v4.7.0/">Font Awesome</a></li>
<li><a href="https://fontawesome.com/">Font Awesome</a></li>
<li><a href="http://jquery.com/">jQuery</a></li>
<li><a href="https://momentjs.com/">Moment</a></li>
</ul>
Expand Down
5 changes: 2 additions & 3 deletions views/layout.erb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
<meta name="description" content="<%= yield_content :description %>" />

<link rel="stylesheet" href="//unpkg.com/[email protected]/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="//unpkg.com/@fortawesome/[email protected]/css/all.css" />
<link rel="stylesheet" href="//unpkg.com/[email protected]/dist/leaflet.css" />
<link rel="stylesheet" href="/assets/stylesheets/layout.css" />

Expand All @@ -50,7 +49,7 @@
<a class="nav-link" href="/routes">Routes</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/stephenyeargin/wego-bus-map">View on GitHub <i class="fab fa-github"></i></a>
<a class="nav-link" href="https://github.com/transitnownash/wego-bus-map">View on GitHub <i class="fab fa-github"></i></a>
</li>
</ul>
<span class="navbar-text">
Expand All @@ -66,6 +65,6 @@
<script src="//unpkg.com/[email protected]/dist/jquery.min.js"></script>
<script src="//unpkg.com/[email protected]/dist/umd/popper.min.js"></script>
<script src="//unpkg.com/[email protected]/dist/js/bootstrap.min.js"></script>
<script src="//unpkg.com/@fortawesome/fontawesome[email protected]/js/all.js"></script>
<script src="https://kit.fontawesome.com/09b66f5b11.js" crossorigin="anonymous"></script>
</body>
</html>
3 changes: 1 addition & 2 deletions views/layouts/app.erb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

<link rel="stylesheet" href="//unpkg.com/[email protected]/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="//unpkg.com/[email protected]/dist/leaflet.css" />
<link rel="stylesheet" href="//unpkg.com/@fortawesome/[email protected]/css/all.css" />
<link rel="stylesheet" href="/assets/stylesheets/app.css" />

<%= erb 'partials/google_analytics'.to_sym %>
Expand All @@ -19,6 +18,6 @@
<%= yield %>


<script src="//unpkg.com/@fortawesome/fontawesome[email protected]/js/all.js"></script>
<script src="https://kit.fontawesome.com/09b66f5b11.js" crossorigin="anonymous"></script>
</body>
</html>
8 changes: 4 additions & 4 deletions views/partials/meta_data.erb
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@
<meta name="description" content="<%= yield_content :description %>" />

<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@stephenyeargin" />
<meta name="twitter:site" content="@transitnownash" />
<meta name="twitter:title" content="<%= yield_content :title %>" />
<meta name="twitter:description" content="<%= yield_content :description %>" />
<meta name="twitter:image" content="https://raw.githubusercontent.com/stephenyeargin/wego-bus-map/master/screenshot.png" />
<meta name="twitter:image" content="https://raw.githubusercontent.com/transitnownash/wego-bus-map/master/screenshot.png" />

<meta property="og:type" content="article" />
<meta property="og:title" content="<%= yield_content :title %>" />
<meta property="og:description" content="<%= yield_content :description %>" />
<meta property="og:site_name" content="WeGo Bus Map" />
<meta property="og:url" content="https://wego-bus-map.herokuapp.com/" />
<meta property="og:image" content="https://raw.githubusercontent.com/stephenyeargin/wego-bus-map/master/screenshot.png" />
<meta property="og:image" content="https://raw.githubusercontent.com/transitnownash/wego-bus-map/master/screenshot.png" />
<meta property="article:published_time" content="2018-09-08" />
<meta property="article:author" content="https://github.com/stephenyeargin/wego-bus-map" />
<meta property="article:author" content="https://github.com/transitnownash/wego-bus-map" />

0 comments on commit bb4577a

Please sign in to comment.