This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| task :deploy => ['deploy:push', 'deploy:restart', 'deploy:tag'] | |
| namespace :deploy do | |
| task :migrations => [:push, :off, :migrate, :restart, :on, :tag] | |
| task :rollback => [:off, :push_previous, :restart, :on] | |
| task :push do | |
| puts 'Deploying site to Heroku ...' | |
| puts `git push heroku` | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| task :deploy do | |
| puts 'Deploying site to Heroku ...' | |
| puts `git push heroku` | |
| puts 'Running database migrations ...' | |
| puts `heroku rake db:migrate` | |
| release_name = "release-#{Time.now.utc.strftime("%Y%m%d%H%M%S")}" | |
| puts "Tagging release as '#{release_name}'" | |
| puts `git tag -a #{release_name} -m 'Tagged release'` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| source 'http://rubygems.org' | |
| gem 'rspec' | |
| gem 'capybara', :git => 'https://github.com/jnicklas/capybara.git' | |
| gem 'launchy' | |
| gem 'ruby-debug19' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // This results in correct positioning on the Rift | |
| this.el.setAttribute('position', { | |
| x: 0, | |
| y: currentPosition.y, | |
| z: 0 | |
| }) | |
| // REMOVED: This is what previously worked for Vive and Gear VR - needs testing! | |
| // this.el.setAttribute('position', { | |
| // x: currentPosition.x - this.data.position.x, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <a-scene altspace="usePixelScale: false; verticalAlign: bottom;" vr-mode-ui="enabled: false;"> | |
| <a-sphere position="0 1.25 -1" radius="1.25" color="#EF2D5E"></a-sphere> | |
| <a-cube position="-1 0.5 1" rotation="0 45 0" width="1" height="1" depth="1" color="#4CC3D9"></a-cube> | |
| <a-cylinder position="1 0.75 1" radius="0.5" height="1.5" color="#FFC65D"></a-cylinder> | |
| <a-plane rotation="-90 0 0" width="4" height="4" color="#7BC8A4"></a-plane> | |
| <a-sky color="#ECECEC"></a-sky> | |
| </a-scene> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script src="https://cdn.rawgit.com/AltspaceVR/aframe-altspace-component/v0.2.2/dist/aframe-altspace-component.min.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // This in A-Frame: | |
| <a-entity position="10 10 10" rotation="0 90 0"> | |
| <a-cube position="1 5 0"> | |
| <a-image position="2 0 5"> | |
| </a-entity> | |
| // ... is similar to this in HTML/CSS: | |
| <div style="position: relative; left: 200px; top: 100px;"> | |
| <div style="position: absolute; left: 10px; top: 0px;"></div> | |
| <div style="position: absolute; left: 50px; top: 50px;"></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Wrapper extends Component { | |
| render() { | |
| const { vrMode } = this.props | |
| if (vrMode) { | |
| return ( | |
| <div> | |
| <Scene> | |
| <Camera><Cursor/></Camera> | |
| <Members/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export default class Member extends Component { | |
| render () { | |
| const { id, name, photoUrl } = this.props | |
| if (this.props.vrMode) { | |
| const { width, height, depth } = this.props | |
| const { x, y, z } = this.props.position | |
| const color = `#${TYPE_TO_COLOR_MAP[this.props.type || '']}` | |
| return ( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Members extends Component { | |
| render () { | |
| let members = this.props.members | |
| if (this.props.vrMode) { | |
| return ( | |
| <Entity> | |
| {members.map(this.renderMember.bind(this))} | |
| </Entity> | |
| ) |
NewerOlder