-
-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
73 changed files
with
685 additions
and
752 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,16 @@ | ||
source 'https://rubygems.org' | ||
|
||
ruby '2.0.0' | ||
gem 'rails', '3.2.13' | ||
|
||
# Mongo stuff | ||
gem 'bson_ext', '1.6.0' | ||
gem 'mongo', '1.6.0' | ||
gem 'mongoid' | ||
|
||
# File uploads | ||
gem 'mongoid-paperclip', :require => "mongoid_paperclip" | ||
gem 'aws-sdk', '~> 1.3.4' | ||
gem 'rails', '4.1.0' | ||
gem 'sqlite3' | ||
gem 'paperclip', '~> 4.2.0' | ||
gem 'rmagick' | ||
|
||
# Gems used only for assets and not required | ||
# in production environments by default. | ||
group :assets do | ||
gem 'sass-rails', '~> 3.2.3' | ||
gem 'less-rails' | ||
#gem 'less-rails-fontawesome' | ||
gem 'coffee-rails', '~> 3.2.1' | ||
|
||
#gem 'bootplus-rails' | ||
#gem 'twitter-bootstrap-rails' | ||
|
||
# See https://github.com/sstephenson/execjs#readme for more supported runtimes | ||
gem 'therubyracer', '~> 0.12.1', :platform => :ruby | ||
|
||
gem 'uglifier', '>= 1.0.3' | ||
end | ||
|
||
group :test do | ||
gem 'factory_girl_rails' | ||
gem 'database_cleaner' | ||
end | ||
gem 'sass-rails', '~> 4.0.3' | ||
gem 'less-rails' | ||
gem 'less-rails-fontawesome' | ||
gem 'uglifier', '>= 1.3.0' | ||
gem 'coffee-rails', '~> 4.0.0' | ||
gem 'therubyracer', platforms: :ruby | ||
gem 'bootplus-rails' | ||
|
||
gem 'jquery-rails' | ||
|
||
# To use ActiveModel has_secure_password | ||
# gem 'bcrypt-ruby', '~> 3.0.0' | ||
|
||
# To use Jbuilder templates for JSON | ||
# gem 'jbuilder' | ||
|
||
# Use unicorn as the app server | ||
# gem 'unicorn' | ||
|
||
# Deploy with Capistrano | ||
# gem 'capistrano' | ||
|
||
# To use debugger | ||
# gem 'ruby-debug19', :require => 'ruby-debug' |
This file contains 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 file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
#!/usr/bin/env rake | ||
# Add your own tasks in files placed in lib/tasks ending in .rake, | ||
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. | ||
|
||
require File.expand_path('../config/application', __FILE__) | ||
|
||
PlanCharacters::Application.load_tasks | ||
Rails.application.load_tasks |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,71 +1,2 @@ | ||
class Character | ||
include Mongoid::Document | ||
|
||
# General | ||
field :name, :type => String | ||
field :role, :type => String | ||
field :gender, :type => String | ||
field :age, :type => String | ||
|
||
# Appearance | ||
field :height, :type => String | ||
field :weight, :type => String | ||
field :haircolor, :type => String | ||
field :hairstyle, :type => String | ||
field :facialhair, :type => String | ||
field :eyecolor, :type => String | ||
field :race, :type => String | ||
field :skintone, :type => String | ||
field :bodytype, :type => String | ||
field :identmarks, :type => String # Identifying marks | ||
|
||
# Social | ||
field :bestfriend, :type => String | ||
field :religion, :type => String | ||
field :politics, :type => String | ||
field :prejudices, :type => String | ||
field :occupation, :type => String | ||
field :pets, :type => String | ||
#How might others describe him? | ||
#What would others change about him? | ||
|
||
# Behavior | ||
field :mannerisms, :type => String | ||
#What drives this character? | ||
#What is standing in his way? | ||
#What is he most afraid of? | ||
#What does he need most? | ||
#What makes him vulnerable? | ||
#What kind of trouble does he get in? | ||
|
||
# History | ||
field :birthday, :type => String | ||
field :birthplace, :type => String | ||
field :education, :type => String | ||
field :background, :type => String | ||
#What is his deepest secret? | ||
#Does he have a history of criminal activity? | ||
|
||
# Favorites | ||
field :fave_color, :type => String | ||
field :fave_food, :type => String | ||
field :fave_possession, :type => String | ||
field :fave_weapon, :type => String | ||
field :fave_animal, :type => String | ||
#favorite leisure activities | ||
|
||
# Relationships | ||
field :father, :type => String | ||
field :mother, :type => String | ||
field :spouse, :type => String | ||
field :siblings, :type => String | ||
field :archenemy, :type => String | ||
|
||
# Notes | ||
field :notes, :type => String | ||
field :private_notes, :type => String | ||
#additional fields | ||
|
||
belongs_to :user | ||
belongs_to :universe | ||
class Character < ActiveRecord::Base | ||
end |
File renamed without changes.
Oops, something went wrong.