├── .gitignore ├── .powrc ├── .rvmrc ├── Gemfile ├── Gemfile.lock ├── README.md ├── RULES.md ├── Rakefile ├── TODO.md ├── app ├── assets │ ├── images │ │ └── .gitkeep │ ├── javascripts │ │ ├── application.js │ │ ├── browser_compatibility.coffee │ │ ├── components │ │ │ ├── action_center.coffee │ │ │ ├── controls.coffee │ │ │ ├── game.coffee │ │ │ ├── game_over.coffee │ │ │ ├── gfx_text.coffee │ │ │ ├── mixins │ │ │ │ ├── hideable.coffee │ │ │ │ └── knows_game.coffee │ │ │ ├── move_in_circle.coffee │ │ │ ├── mute_control.coffee │ │ │ ├── obstacle.coffee │ │ │ ├── pause_control.coffee │ │ │ ├── player.coffee │ │ │ ├── segment.coffee │ │ │ ├── track.coffee │ │ │ └── trail.coffee │ │ ├── config │ │ │ ├── assets.coffee │ │ │ ├── game_config.coffee │ │ │ ├── gfx.coffee │ │ │ ├── index.js │ │ │ └── player_settings.coffee │ │ ├── main.coffee │ │ ├── objects │ │ │ ├── high_score.coffee │ │ │ ├── music.coffee │ │ │ ├── narrator.coffee │ │ │ └── settings.coffee │ │ ├── scenes │ │ │ ├── in_game.coffee │ │ │ └── menu.coffee │ │ └── utils.coffee │ └── stylesheets │ │ ├── application.css.scss │ │ ├── game.css.scss │ │ ├── gfx_text.css.scss │ │ ├── hud.css.scss │ │ └── menu.css.scss ├── controllers │ └── application_controller.rb └── views │ ├── application │ └── main.html.erb │ └── layouts │ ├── _getsatisfaction.html.erb │ ├── _mixpanel.html.erb │ ├── _og_meta_tags.html.erb │ └── application.html.erb ├── config.ru ├── config ├── application.rb ├── boot.rb ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── backtrace_silencers.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── secret_token.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml └── routes.rb ├── log └── .gitkeep ├── public ├── favicon.gif ├── fonts │ ├── typicons-regular-webfont.eot │ ├── typicons-regular-webfont.svg │ ├── typicons-regular-webfont.ttf │ └── typicons-regular-webfont.woff ├── robots.txt ├── screen-0.png ├── screen-1.png ├── screen-2.png ├── screen-3.png ├── screen-4.png └── sounds │ ├── code.mp3 │ ├── code.ogg │ ├── conflict.mp3 │ ├── conflict.ogg │ ├── crash.mp3 │ ├── crash.ogg │ ├── fork.mp3 │ ├── fork.ogg │ ├── merge.mp3 │ ├── merge.ogg │ ├── music │ ├── 04 - Bullcactus.mp3 │ ├── 04 - Bullcactus.ogg │ ├── 05 - Soft commando.mp3 │ ├── 05 - Soft commando.ogg │ ├── 06 - Monster.mp3 │ ├── 06 - Monster.ogg │ ├── 10 - Datahell beta.mp3 │ └── 10 - Datahell beta.ogg │ ├── pull.mp3 │ ├── pull.ogg │ ├── push.mp3 │ ├── push.ogg │ ├── ready.mp3 │ └── ready.ogg ├── script └── rails └── vendor └── assets ├── javascripts ├── .gitkeep ├── colors.js ├── crafty.js ├── crafty_modules │ └── crafty.tweener.js ├── modernizr.js ├── store.js └── underscore.js └── stylesheets ├── .gitkeep └── typicons.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/.gitignore -------------------------------------------------------------------------------- /.powrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/.powrc -------------------------------------------------------------------------------- /.rvmrc: -------------------------------------------------------------------------------- 1 | rvm --create use 1.9.2@githubgamjam -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/README.md -------------------------------------------------------------------------------- /RULES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/RULES.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/Rakefile -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/TODO.md -------------------------------------------------------------------------------- /app/assets/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/browser_compatibility.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/javascripts/browser_compatibility.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/components/action_center.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/javascripts/components/action_center.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/components/controls.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/javascripts/components/controls.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/components/game.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/javascripts/components/game.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/components/game_over.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/javascripts/components/game_over.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/components/gfx_text.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/javascripts/components/gfx_text.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/components/mixins/hideable.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/javascripts/components/mixins/hideable.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/components/mixins/knows_game.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/javascripts/components/mixins/knows_game.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/components/move_in_circle.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/javascripts/components/move_in_circle.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/components/mute_control.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/javascripts/components/mute_control.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/components/obstacle.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/javascripts/components/obstacle.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/components/pause_control.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/javascripts/components/pause_control.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/components/player.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/javascripts/components/player.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/components/segment.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/javascripts/components/segment.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/components/track.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/javascripts/components/track.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/components/trail.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/javascripts/components/trail.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/config/assets.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/javascripts/config/assets.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/config/game_config.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/javascripts/config/game_config.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/config/gfx.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/javascripts/config/gfx.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/javascripts/config/index.js -------------------------------------------------------------------------------- /app/assets/javascripts/config/player_settings.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/javascripts/config/player_settings.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/main.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/javascripts/main.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/objects/high_score.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/javascripts/objects/high_score.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/objects/music.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/javascripts/objects/music.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/objects/narrator.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/javascripts/objects/narrator.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/objects/settings.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/javascripts/objects/settings.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/scenes/in_game.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/javascripts/scenes/in_game.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/scenes/menu.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/javascripts/scenes/menu.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/utils.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/javascripts/utils.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/stylesheets/application.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/game.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/stylesheets/game.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/gfx_text.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/stylesheets/gfx_text.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/hud.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/stylesheets/hud.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/menu.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/assets/stylesheets/menu.css.scss -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/views/application/main.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/layouts/_getsatisfaction.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/views/layouts/_getsatisfaction.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_mixpanel.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/views/layouts/_mixpanel.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_og_meta_tags.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/views/layouts/_og_meta_tags.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/config/routes.rb -------------------------------------------------------------------------------- /log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/favicon.gif -------------------------------------------------------------------------------- /public/fonts/typicons-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/fonts/typicons-regular-webfont.eot -------------------------------------------------------------------------------- /public/fonts/typicons-regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/fonts/typicons-regular-webfont.svg -------------------------------------------------------------------------------- /public/fonts/typicons-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/fonts/typicons-regular-webfont.ttf -------------------------------------------------------------------------------- /public/fonts/typicons-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/fonts/typicons-regular-webfont.woff -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/screen-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/screen-0.png -------------------------------------------------------------------------------- /public/screen-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/screen-1.png -------------------------------------------------------------------------------- /public/screen-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/screen-2.png -------------------------------------------------------------------------------- /public/screen-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/screen-3.png -------------------------------------------------------------------------------- /public/screen-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/screen-4.png -------------------------------------------------------------------------------- /public/sounds/code.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/sounds/code.mp3 -------------------------------------------------------------------------------- /public/sounds/code.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/sounds/code.ogg -------------------------------------------------------------------------------- /public/sounds/conflict.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/sounds/conflict.mp3 -------------------------------------------------------------------------------- /public/sounds/conflict.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/sounds/conflict.ogg -------------------------------------------------------------------------------- /public/sounds/crash.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/sounds/crash.mp3 -------------------------------------------------------------------------------- /public/sounds/crash.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/sounds/crash.ogg -------------------------------------------------------------------------------- /public/sounds/fork.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/sounds/fork.mp3 -------------------------------------------------------------------------------- /public/sounds/fork.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/sounds/fork.ogg -------------------------------------------------------------------------------- /public/sounds/merge.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/sounds/merge.mp3 -------------------------------------------------------------------------------- /public/sounds/merge.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/sounds/merge.ogg -------------------------------------------------------------------------------- /public/sounds/music/04 - Bullcactus.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/sounds/music/04 - Bullcactus.mp3 -------------------------------------------------------------------------------- /public/sounds/music/04 - Bullcactus.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/sounds/music/04 - Bullcactus.ogg -------------------------------------------------------------------------------- /public/sounds/music/05 - Soft commando.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/sounds/music/05 - Soft commando.mp3 -------------------------------------------------------------------------------- /public/sounds/music/05 - Soft commando.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/sounds/music/05 - Soft commando.ogg -------------------------------------------------------------------------------- /public/sounds/music/06 - Monster.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/sounds/music/06 - Monster.mp3 -------------------------------------------------------------------------------- /public/sounds/music/06 - Monster.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/sounds/music/06 - Monster.ogg -------------------------------------------------------------------------------- /public/sounds/music/10 - Datahell beta.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/sounds/music/10 - Datahell beta.mp3 -------------------------------------------------------------------------------- /public/sounds/music/10 - Datahell beta.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/sounds/music/10 - Datahell beta.ogg -------------------------------------------------------------------------------- /public/sounds/pull.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/sounds/pull.mp3 -------------------------------------------------------------------------------- /public/sounds/pull.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/sounds/pull.ogg -------------------------------------------------------------------------------- /public/sounds/push.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/sounds/push.mp3 -------------------------------------------------------------------------------- /public/sounds/push.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/sounds/push.ogg -------------------------------------------------------------------------------- /public/sounds/ready.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/sounds/ready.mp3 -------------------------------------------------------------------------------- /public/sounds/ready.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/public/sounds/ready.ogg -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/script/rails -------------------------------------------------------------------------------- /vendor/assets/javascripts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/javascripts/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/vendor/assets/javascripts/colors.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/crafty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/vendor/assets/javascripts/crafty.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/crafty_modules/crafty.tweener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/vendor/assets/javascripts/crafty_modules/crafty.tweener.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/vendor/assets/javascripts/modernizr.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/vendor/assets/javascripts/store.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/vendor/assets/javascripts/underscore.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/typicons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RothschildGames/release-cycles/HEAD/vendor/assets/stylesheets/typicons.css --------------------------------------------------------------------------------