about summary refs log tree commit diff stats
path: root/bin/rails
blob: 73a6f70c3ade97a378059e15f3f436a1ceee59b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env ruby
# This command will automatically be run when you run "rails" with Rails gems
# installed from the root of your application.

ENGINE_ROOT = File.expand_path('../..', __FILE__)
ENGINE_PATH = File.expand_path('../../lib/pokeviewer/engine', __FILE__)
APP_PATH = File.expand_path('../../test/dummy/config/application', __FILE__)

# Set up gems listed in the Gemfile.
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])

require 'rails/all'
require 'rails/engine/commands'
class="o">.summary = "Rails engine that displays Pokémon." s.description = "Pokeviewer is a web interface that lets you display Pokémon that have been uploaded from a GBA using hatkirby/gen3uploader." s.license = "MIT" s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"] s.add_dependency "rails", "~> 5.1.4" s.add_dependency "enumerize" s.add_dependency "sequenced" s.add_dependency "activerecord-diff" s.add_dependency "haml" s.add_dependency 'sass-rails', '~> 5.0' s.add_dependency 'normalize-rails' s.add_dependency 'coffee-rails', '~> 4.2' s.add_dependency 'jquery-rails' s.add_dependency 'victor' s.add_development_dependency "sqlite3" end