Launch Site Teachly
This is an entry in the 2012 Rails Rumble. After checking it out, we encourage you
to leave feedback and then take a look at the hundreds of other amazing entries.
By "Modra Jagoda"
Description
Teachly is a remix of educational video sites and live chat. It enables students and teachers to connect based on matching categories in 1 to 1 video chat. Teachly was built to capture creativity and the thirst for knowledge at the right point in time, but on the other hand also to encourage teaching of the learned material as a way to learn even more. Win-win.
Teachers and students can be upvoted and the best teachers and students are then showcased on the front page.
Here's a demo account, pre-filled with some interest and knowledge tags, so don't scare away if you get a pop-up when using the site, saying that someone wants to teach you or learn from you :)
---- DEMO ACCOUNT ----
Username: demo@example.com
Password: demo123
-----------------------
Built By
Built With
Interested in seeing what was used to build this application? Resources may include things like open source libraries, third party APIs, and icons.
Mandrill for email
A copy of Adobe Illustrator
A copy of Excel
Vector Human from thenounproject
List of knowledge from wikipedia
OpenTok for video
Pusher for pub/sub
gem 'rails', '3.2.6'
gem 'psych'
gem 'devise...
Mandrill for email
A copy of Adobe Illustrator
A copy of Excel
Vector Human from thenounproject
List of knowledge from wikipedia
OpenTok for video
Pusher for pub/sub
gem 'rails', '3.2.6'
gem 'psych'
gem 'devise'
gem 'sqlite3'
gem 'pg'
gem 'omniauth'
gem 'oauth2'
gem 'jquery-rails'
gem 'slim'
gem 'slim-rails'
gem 'bootstrap-sass'
gem 'gravatar-ultimate'
gem 'acts-as-taggable-on', '~> 2.3.1'
gem 'pry'
gem 'jquery-ui-rails'
gem 'annotate', ">=2.5.0"
gem 'opentok'
gem 'redcarpet'
gem 'unicorn'
gem 'capistrano'
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
end
group :development do
gem 'capistrano-unicorn', :require => false
gem 'pry'
gem 'rb-fsevent', :require => false
gem 'guard'
gem 'terminal-notifier-guard'
gem 'guard-rspec'
gem 'guard-spork'
end
group :test, :development do
gem "rspec-rails", "~> 2.0"
gem "factory_girl"
gem "factory_girl_rails", "~> 4.0"
gem 'database_cleaner'
end
2012