Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
NouranMahmoud committed Jun 7, 2014
0 parents commit 8e6c0ea
Show file tree
Hide file tree
Showing 69 changed files with 1,709 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .bundle/config
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
BUNDLE_PATH: vendor/bundle
BUNDLE_WITHOUT: production
BUNDLE_DISABLE_SHARED_GEMS: '1'
30 changes: 30 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# generated by RailsBricks

# Don't ignore bundler config!
# Useful when git cloning an app and not wanting
# the gems to be installed globally.
# Can be uncommented if really necessary.
# /.bundle

# Ignore the bundle directory itself.
/vendor/bundle

# Ignore the default SQLite database.
/db/*.sqlite3
/db/*.sqlite3-journal

# Ignore all logfiles and tempfiles.
/log/*.log
/tmp

# Ignore other unneeded files.
doc/
*.swp
*~
.project
.DS_Store
.idea

# Ignore application configuration
/config/application.yml
.secret
1 change: 1 addition & 0 deletions .rbricks/config
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"ruby_version":"2.0.0","gem_command":"gem","rake_command":"rake","ruby_version_manager":"rvm","app_path":"GoogleMapsTut","app_name":"GoogleMapsTut","set_production":true,"hosting":"heroku","domain_name":"gmapstut","authentication":"none","confirmable":false,"test_users":null,"set_emails":false,"email_sender":"","email_domain":"","smtp_server":"","smtp_port":0,"smtp_username":"","test_framework":"default","ui":"bootstrap3","git_local":true,"git_remote":true,"git_remote_url":"[email protected]:NouranMahmoud/GoogleMapTut.git","create":true,"smtp_password":"******"}
43 changes: 43 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
source 'http://rubygems.org'
ruby '2.1.1'
gem 'rails', '4.0.4'
gem 'sass-rails', '~> 4.0.1'
gem 'uglifier', '~> 2.4.0'
gem 'coffee-rails', '~> 4.0.1'
gem 'jquery-rails', '~> 3.0.4'
gem 'turbolinks', '~> 2.1.0'
gem 'jbuilder', '~> 1.5.3'
gem 'bcrypt', '~> 3.1.2'

group :doc do
gem 'sdoc', require: false
end

# development gems
group :development, :test do
gem 'sqlite3', '~> 1.3.8' # dev & test database
gem 'figaro', '~> 0.7.0' # env variables
end

# Paging
gem 'kaminari', '~> 0.15.0'

# Slugs and friendly id's
gem 'friendly_id', '~> 5.0.2'

# font-awesome
gem 'font-awesome-sass', '~> 4.0.2'

# production gems for heroku
group :production do
gem 'pg'
gem 'rails_12factor'
end


# Bootstrap 3
group :development, :test do
gem 'rails_layout', '~> 0.5.11' # Bootstrap 3 layout generator
end

gem 'bootstrap-sass', '~> 3.0.3.0'
147 changes: 147 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,147 @@
GEM
remote: http://rubygems.org/
specs:
actionmailer (4.0.4)
actionpack (= 4.0.4)
mail (~> 2.5.4)
actionpack (4.0.4)
activesupport (= 4.0.4)
builder (~> 3.1.0)
erubis (~> 2.7.0)
rack (~> 1.5.2)
rack-test (~> 0.6.2)
activemodel (4.0.4)
activesupport (= 4.0.4)
builder (~> 3.1.0)
activerecord (4.0.4)
activemodel (= 4.0.4)
activerecord-deprecated_finders (~> 1.0.2)
activesupport (= 4.0.4)
arel (~> 4.0.0)
activerecord-deprecated_finders (1.0.3)
activesupport (4.0.4)
i18n (~> 0.6, >= 0.6.9)
minitest (~> 4.2)
multi_json (~> 1.3)
thread_safe (~> 0.1)
tzinfo (~> 0.3.37)
arel (4.0.2)
bcrypt (3.1.7)
bootstrap-sass (3.0.3.0)
sass (~> 3.2)
builder (3.1.4)
coffee-rails (4.0.1)
coffee-script (>= 2.2.0)
railties (>= 4.0.0, < 5.0)
coffee-script (2.2.0)
coffee-script-source
execjs
coffee-script-source (1.7.0)
erubis (2.7.0)
execjs (2.1.0)
figaro (0.7.0)
bundler (~> 1.0)
rails (>= 3, < 5)
font-awesome-sass (4.0.3.2)
sass (~> 3.2)
friendly_id (5.0.4)
activerecord (>= 4.0.0)
hike (1.2.3)
i18n (0.6.9)
jbuilder (1.5.3)
activesupport (>= 3.0.0)
multi_json (>= 1.2.0)
jquery-rails (3.0.4)
railties (>= 3.0, < 5.0)
thor (>= 0.14, < 2.0)
json (1.8.1)
kaminari (0.15.1)
actionpack (>= 3.0.0)
activesupport (>= 3.0.0)
mail (2.5.4)
mime-types (~> 1.16)
treetop (~> 1.4.8)
mime-types (1.25.1)
minitest (4.7.5)
multi_json (1.10.1)
pg (0.17.1)
polyglot (0.3.5)
rack (1.5.2)
rack-test (0.6.2)
rack (>= 1.0)
rails (4.0.4)
actionmailer (= 4.0.4)
actionpack (= 4.0.4)
activerecord (= 4.0.4)
activesupport (= 4.0.4)
bundler (>= 1.3.0, < 2.0)
railties (= 4.0.4)
sprockets-rails (~> 2.0.0)
rails_12factor (0.0.2)
rails_serve_static_assets
rails_stdout_logging
rails_layout (0.5.11)
rails_serve_static_assets (0.0.2)
rails_stdout_logging (0.0.3)
railties (4.0.4)
actionpack (= 4.0.4)
activesupport (= 4.0.4)
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)
rake (10.3.2)
rdoc (4.1.1)
json (~> 1.4)
sass (3.2.19)
sass-rails (4.0.3)
railties (>= 4.0.0, < 5.0)
sass (~> 3.2.0)
sprockets (~> 2.8, <= 2.11.0)
sprockets-rails (~> 2.0)
sdoc (0.4.0)
json (~> 1.8)
rdoc (~> 4.0, < 5.0)
sprockets (2.11.0)
hike (~> 1.2)
multi_json (~> 1.0)
rack (~> 1.0)
tilt (~> 1.1, != 1.3.0)
sprockets-rails (2.0.1)
actionpack (>= 3.0)
activesupport (>= 3.0)
sprockets (~> 2.8)
sqlite3 (1.3.9)
thor (0.19.1)
thread_safe (0.3.4)
tilt (1.4.1)
treetop (1.4.15)
polyglot
polyglot (>= 0.3.1)
turbolinks (2.1.0)
coffee-rails
tzinfo (0.3.39)
uglifier (2.4.0)
execjs (>= 0.3.0)
json (>= 1.8.0)

PLATFORMS
ruby

DEPENDENCIES
bcrypt (~> 3.1.2)
bootstrap-sass (~> 3.0.3.0)
coffee-rails (~> 4.0.1)
figaro (~> 0.7.0)
font-awesome-sass (~> 4.0.2)
friendly_id (~> 5.0.2)
jbuilder (~> 1.5.3)
jquery-rails (~> 3.0.4)
kaminari (~> 0.15.0)
pg
rails (= 4.0.4)
rails_12factor
rails_layout (~> 0.5.11)
sass-rails (~> 4.0.1)
sdoc
sqlite3 (~> 1.3.8)
turbolinks (~> 2.1.0)
uglifier (~> 2.4.0)
28 changes: 28 additions & 0 deletions README.rdoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
== README

This README would normally document whatever steps are necessary to get the
application up and running.

Things you may want to cover:

* Ruby version

* System dependencies

* Configuration

* Database creation

* Database initialization

* How to run the test suite

* Services (job queues, cache servers, search engines, etc.)

* Deployment instructions

* ...


Please feel free to use a different markup language if you do not plan to run
<tt>rake doc:app</tt>.
6 changes: 6 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# 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__)

GoogleMapsTut::Application.load_tasks
Empty file added app/assets/images/.keep
Empty file.
Binary file added app/assets/images/favicon.ico
Binary file not shown.
Binary file added app/assets/images/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions app/assets/javascripts/application.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// This is a manifest file that'll be compiled into application.js, which will include all the files
// listed below.
//
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
//
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
// compiled file.
//
// Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details
// about supported directives.
//
//= require jquery
//= require jquery_ujs
//= require turbolinks
//= require bootstrap
//= require_tree .
Loading

0 comments on commit 8e6c0ea

Please sign in to comment.