http://www.surmusicstudio.com/locales-de-ensayo-madrid-sur/ - 350€ http://www.california-studios.com/locales-de-ensayo/ - 910223277
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
| { | |
| "color_scheme": "Packages/User/Monokai Soda.tmTheme", | |
| "ignored_packages": | |
| [ | |
| "JSLint", | |
| "Vintage", | |
| "JSHint" | |
| ], | |
| "rulers": | |
| [ |
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
| set nocompatible " be iMproved, requires | |
| set shell=/bin/bash | |
| filetype off " required | |
| " set the runtime path to include Vundle and initialize | |
| set rtp+=~/.vim/bundle/Vundle.vim | |
| call vundle#begin() | |
| " alternatively, pass a path where Vundle should install plugins | |
| "call vundle#begin('~/some/path/here') |
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
| { | |
| "characters": [{ | |
| "name": "Itxa", | |
| "realm": "Outland", | |
| "battlegroup": "Misery", | |
| "class": 8, | |
| "race": 7, | |
| "gender": 1, | |
| "level": 0, | |
| "achievementPoints": 0, |
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 Company < Model | |
| attribute :stock_symbol, type: String | |
| attribute :name, type: String | |
| attribute :stock_price, type: Float | |
| attribute :stock_volume, type: Integer | |
| attribute :number_of_shares, type: Integer | |
| has_one :ceo, class_name: 'Person' | |
| def volume_price |
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 CompanyController < ApplicationController | |
| def index | |
| render json: Company.all, | |
| serializer: ActiveModel::Serializer::CollectionSerializer, | |
| each_serializer: CompanySerializer | |
| end | |
| 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
| get 'companies' => 'company#index' | |
| namespace :webhooks do | |
| post 'company_market_updates' => 'company_market_updates#update' | |
| 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
| class RegisterController < ApplicationController | |
| def create | |
| render json: UserService.new.register(registration_params) | |
| rescue RegistrationError | |
| render json: {message: 'User already registered'}, status_code: 422 | |
| end | |
| private | |
| def registration_params |
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 CompanyMarketUpdatesController < ApplicationController | |
| def update | |
| CompanyMarketUpdatesJob.perform_later(update_params) | |
| render json: {sucess: true}, status: 202 | |
| end | |
| private | |
| def update_params | |
| params.extract!(:stock_symbol, :stock_volume, :stock_price) |