# -*- encoding: utf-8 -*- Gem::Specification.new do |s| s.name = "game" s.version = "0.0.1" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Ryan Scott Lewis"] s.date = "2012-11-22" s.description = "# Game\n\nA Ruby-powered MVC game framework.\n\n## Install\n\n```sh\n$ gem install game\n```\n\n## Usage\n\n### Setup\n\n```sh\n$ game new my_cool_game\n```\n\nThis will create a new directory named `my_cool_game` in the current working directory. \nThe directory is laid out very much like a Rails application:\n\n my_cool_game\n \u{251c}\u{2500}\u{2500} Gemfile\n \u{251c}\u{2500}\u{2500} Guardfile\n \u{251c}\u{2500}\u{2500} README\n \u{251c}\u{2500}\u{2500} app\n | \u{251c}\u{2500}\u{2500} assets\n \u{2502} \u{2502} \u{251c}\u{2500}\u{2500} fonts\n \u{2502} \u{2502} \u{251c}\u{2500}\u{2500} images\n \u{2502} \u{2502} \u{251c}\u{2500}\u{2500} music\n \u{2502} \u{2502} \u{2514}\u{2500}\u{2500} sounds\n | \u{251c}\u{2500}\u{2500} controllers\n \u{2502} \u{2502} \u{2514}\u{2500}\u{2500} game_controller.rb\n | \u{251c}\u{2500}\u{2500} helpers\n \u{2502} \u{2502} \u{2514}\u{2500}\u{2500} game_helpers.rb\n | \u{251c}\u{2500}\u{2500} models\n | \u{251c}\u{2500}\u{2500} views\n | \u{2514}\u{2500}\u{2500} windows\n \u{2502} \u{2502} \u{2514}\u{2500}\u{2500} game_window.rb\n \u{251c}\u{2500}\u{2500} config\n \u{2502} \u{251c}\u{2500}\u{2500} environments\n \u{2502} \u{2502} \u{251c}\u{2500}\u{2500} development.rb\n \u{2502} \u{2502} \u{251c}\u{2500}\u{2500} production.rb\n \u{2502} \u{2502} \u{2514}\u{2500}\u{2500} test.rb\n \u{2502} \u{251c}\u{2500}\u{2500} initializers\n \u{2502} \u{251c}\u{2500}\u{2500} locales\n \u{2502} \u{2502} \u{2514}\u{2500}\u{2500} en.yml\n \u{2502} \u{251c}\u{2500}\u{2500} application.rb\n \u{2502} \u{251c}\u{2500}\u{2500} boot.rb\n \u{2502} \u{2514}\u{2500}\u{2500} database.yml\n \u{2502} \u{251c}\u{2500}\u{2500} environment.rb\n \u{2502} \u{2514}\u{2500}\u{2500} routes.rb\n \u{251c}\u{2500}\u{2500} log\n \u{251c}\u{2500}\u{2500} spec\n | \u{2514}\u{2500}\u{2500} spec_helper.rb\n \u{2514}\u{2500}\u{2500} tmp\n\n## Acknowledgements\n\n* [Rails][rails] for making MVC very popular in the [Ruby][ruby] universe\n* [Gamebox][gamebox] for inspiration.\n\n## Contributing\n\n* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet\n* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it\n* Fork the project\n* Start or switch to a testing/unstable/feature/bugfix branch\n* Commit and push until you are happy with your contribution\n* Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.\n* Please try not to mess with the Rakefile, VERSION or gemspec.\n\n## Copyright\n\nCopyright \u{a9} 2012 Ryan Scott Lewis .\n\nThe MIT License (MIT) - See LICENSE for further details.\n\n[rails]: https://github.com/rails/rails\n[ruby]: https://github.com/ruby/ruby\n[gamebox]: https://github.com/shawn42/gamebox\n" s.email = ["ryan@rynet.us"] s.files = [".gitignore", "Gemfile", "LICENSE", "README.md", "Rakefile", "VERSION", "examples/super_ruby_bros/Gemfile", "examples/super_ruby_bros/app/controllers/game_controller.rb", "examples/super_ruby_bros/app/controllers/main_menu_controller.rb", "examples/super_ruby_bros/app/entities/logo.rb", "examples/super_ruby_bros/app/entities/main_menu_list_item.rb", "examples/super_ruby_bros/app/helpers/game_helpers.rb", "examples/super_ruby_bros/app/views/main_menu/show.rb", "examples/super_ruby_bros/app/windows/game_window.rb", "examples/super_ruby_bros/config/application.rb", "examples/super_ruby_bros/config/boot.rb", "examples/super_ruby_bros/config/environment.rb", "examples/super_ruby_bros/config/locales/en.yml", "examples/super_ruby_bros/config/routes.rb", "game.gemspec", "lib/core_ext/array.rb", "lib/core_ext/hash.rb", "lib/game.rb", "lib/game/application.rb", "lib/game/controller.rb", "lib/game/window.rb"] s.homepage = "http://github.com/RyanScottLewis/game" s.require_paths = ["lib"] s.rubygems_version = "1.8.24" s.summary = "Game is a cross-platform and cross-implementation MVC framework for creating video games in Ruby." if s.respond_to? :specification_version then s.specification_version = 3 if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then s.add_runtime_dependency(%q, ["~> 1.0"]) s.add_development_dependency(%q, ["~> 2.1"]) s.add_development_dependency(%q, ["~> 2.0"]) s.add_development_dependency(%q, ["~> 0.9"]) s.add_development_dependency(%q, ["~> 1.1"]) s.add_development_dependency(%q, ["~> 0.7"]) else s.add_dependency(%q, ["~> 1.0"]) s.add_dependency(%q, ["~> 2.1"]) s.add_dependency(%q, ["~> 2.0"]) s.add_dependency(%q, ["~> 0.9"]) s.add_dependency(%q, ["~> 1.1"]) s.add_dependency(%q, ["~> 0.7"]) end else s.add_dependency(%q, ["~> 1.0"]) s.add_dependency(%q, ["~> 2.1"]) s.add_dependency(%q, ["~> 2.0"]) s.add_dependency(%q, ["~> 0.9"]) s.add_dependency(%q, ["~> 1.1"]) s.add_dependency(%q, ["~> 0.7"]) end end