About
PoGoBag is an open source application that was inspired by a need for an easy and web-accessible application to view and share your Pokémon Go Pokemon. Trainer and Pokémon data is updated whenever a user logs in, which means you can only see the pokemon of those who have logged in. For Google users, data is refreshed every 5 minutes (meaning only one login required to see your updated bag)
PoGoBag is built with Ruby on Rails. Github
Donations
As of right now, the owner is paying out of pocket to run this website. Any donation is highly appreciated and will go towards making the server better!
<%= render 'static_pages/donate' %>
================================================
FILE: app/views/static_pages/home.html.erb
================================================
We're sorry, but something went wrong.
If you are the application owner check the logs for more information.
================================================
FILE: public/robots.txt
================================================
# See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
#
# To ban all spiders from the entire site uncomment the next two lines:
# User-agent: *
# Disallow: /
================================================
FILE: test/controllers/.keep
================================================
================================================
FILE: test/controllers/sessions_controller_test.rb
================================================
require 'test_helper'
class SessionsControllerTest < ActionDispatch::IntegrationTest
test "should get new" do
get sessions_new_url
assert_response :success
end
test "should get create" do
get sessions_create_url
assert_response :success
end
end
================================================
FILE: test/controllers/static_pages_controller_test.rb
================================================
require 'test_helper'
class StaticPagesControllerTest < ActionDispatch::IntegrationTest
test "should get home" do
get home_path
assert_response :success
end
test "should get about" do
get about_path
assert_response :success
end
test "should get contact" do
get contact_path
assert_response :success
end
end
================================================
FILE: test/controllers/stats_controller_test.rb
================================================
require 'test_helper'
class StatsControllerTest < ActionDispatch::IntegrationTest
test "should get show" do
get stats_show_url
assert_response :success
end
end
================================================
FILE: test/controllers/users_controller_test.rb
================================================
require 'test_helper'
class UsersControllerTest < ActionDispatch::IntegrationTest
test "should get show" do
get users_show_url
assert_response :success
end
end
================================================
FILE: test/fixtures/.keep
================================================
================================================
FILE: test/fixtures/files/.keep
================================================
================================================
FILE: test/fixtures/items.yml
================================================
# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
one:
item_id: MyString
count: 1
user: one
two:
item_id: MyString
count: 1
user: two
================================================
FILE: test/fixtures/pokemons.yml
================================================
# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
one:
poke_id: MyString
move_1: MyString
move_2: MyString
health: 1
attack: 1
defense: 1
stamina: 1
user: one
two:
poke_id: MyString
move_1: MyString
move_2: MyString
health: 1
attack: 1
defense: 1
stamina: 1
user: two
================================================
FILE: test/fixtures/users.yml
================================================
# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
one:
name: MyString
two:
name: MyString
================================================
FILE: test/helpers/.keep
================================================
================================================
FILE: test/integration/.keep
================================================
================================================
FILE: test/integration/users_login_test.rb
================================================
require 'test_helper'
class UsersLoginTest < ActionDispatch::IntegrationTest
# test "the truth" do
# assert true
# end
end
================================================
FILE: test/mailers/.keep
================================================
================================================
FILE: test/models/.keep
================================================
================================================
FILE: test/models/item_test.rb
================================================
require 'test_helper'
class ItemTest < ActiveSupport::TestCase
# test "the truth" do
# assert true
# end
end
================================================
FILE: test/models/pokemon_test.rb
================================================
require 'test_helper'
class PokemonTest < ActiveSupport::TestCase
# test "the truth" do
# assert true
# end
end
================================================
FILE: test/models/user_test.rb
================================================
require 'test_helper'
class UserTest < ActiveSupport::TestCase
# test "the truth" do
# assert true
# end
end
================================================
FILE: test/test_helper.rb
================================================
ENV['RAILS_ENV'] ||= 'test'
require File.expand_path('../../config/environment', __FILE__)
require 'rails/test_help'
class ActiveSupport::TestCase
# Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
fixtures :all
# Add more helper methods to be used by all tests here...
end
================================================
FILE: vendor/assets/javascripts/.keep
================================================
================================================
FILE: vendor/assets/stylesheets/.keep
================================================