Skip to content

Commit f3df24b

Browse files
committed
Inital commit & setup
0 parents  commit f3df24b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+951
-0
lines changed

.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
2+
#
3+
# If you find yourself ignoring temporary files generated by your text editor
4+
# or operating system, you probably want to add a global ignore instead:
5+
# git config --global core.excludesfile '~/.gitignore_global'
6+
7+
# Ignore bundler config.
8+
/.bundle
9+
10+
# Ignore the default SQLite database.
11+
/db/*.sqlite3
12+
/db/*.sqlite3-journal
13+
14+
# Ignore all logfiles and tempfiles.
15+
/log/*
16+
!/log/.keep
17+
/tmp

Gemfile

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
source 'https://rubygems.org'
2+
3+
4+
gem 'rails', '4.2.5.1'
5+
gem 'sqlite3'
6+
gem 'sass-rails', '~> 5.0'
7+
gem 'uglifier', '>= 1.3.0'
8+
gem 'coffee-rails', '~> 4.1.0'
9+
gem 'jquery-rails'
10+
gem 'turbolinks'
11+
gem 'jbuilder', '~> 2.0'
12+
gem 'haml'
13+
gem 'boostrap-sass'
14+
gem 'simple_form'
15+
gem 'sdoc', '~> 0.4.0', group: :doc
16+
17+
group :development, :test do
18+
gem 'byebug'
19+
end
20+
21+
group :development do
22+
gem 'web-console', '~> 2.0'
23+
gem 'spring'
24+
end

Gemfile.lock

Lines changed: 175 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,175 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actionmailer (4.2.5.1)
5+
actionpack (= 4.2.5.1)
6+
actionview (= 4.2.5.1)
7+
activejob (= 4.2.5.1)
8+
mail (~> 2.5, >= 2.5.4)
9+
rails-dom-testing (~> 1.0, >= 1.0.5)
10+
actionpack (4.2.5.1)
11+
actionview (= 4.2.5.1)
12+
activesupport (= 4.2.5.1)
13+
rack (~> 1.6)
14+
rack-test (~> 0.6.2)
15+
rails-dom-testing (~> 1.0, >= 1.0.5)
16+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
17+
actionview (4.2.5.1)
18+
activesupport (= 4.2.5.1)
19+
builder (~> 3.1)
20+
erubis (~> 2.7.0)
21+
rails-dom-testing (~> 1.0, >= 1.0.5)
22+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
23+
activejob (4.2.5.1)
24+
activesupport (= 4.2.5.1)
25+
globalid (>= 0.3.0)
26+
activemodel (4.2.5.1)
27+
activesupport (= 4.2.5.1)
28+
builder (~> 3.1)
29+
activerecord (4.2.5.1)
30+
activemodel (= 4.2.5.1)
31+
activesupport (= 4.2.5.1)
32+
arel (~> 6.0)
33+
activesupport (4.2.5.1)
34+
i18n (~> 0.7)
35+
json (~> 1.7, >= 1.7.7)
36+
minitest (~> 5.1)
37+
thread_safe (~> 0.3, >= 0.3.4)
38+
tzinfo (~> 1.1)
39+
arel (6.0.3)
40+
autoprefixer-rails (6.3.4)
41+
execjs
42+
binding_of_caller (0.7.2)
43+
debug_inspector (>= 0.0.1)
44+
boostrap-sass (0.0.2)
45+
bootstrap-sass
46+
bootstrap-sass (3.3.6)
47+
autoprefixer-rails (>= 5.2.1)
48+
sass (>= 3.3.4)
49+
builder (3.2.2)
50+
byebug (8.2.2)
51+
coffee-rails (4.1.1)
52+
coffee-script (>= 2.2.0)
53+
railties (>= 4.0.0, < 5.1.x)
54+
coffee-script (2.4.1)
55+
coffee-script-source
56+
execjs
57+
coffee-script-source (1.10.0)
58+
concurrent-ruby (1.0.1)
59+
debug_inspector (0.0.2)
60+
erubis (2.7.0)
61+
execjs (2.6.0)
62+
globalid (0.3.6)
63+
activesupport (>= 4.1.0)
64+
haml (4.0.7)
65+
tilt
66+
i18n (0.7.0)
67+
jbuilder (2.4.1)
68+
activesupport (>= 3.0.0, < 5.1)
69+
multi_json (~> 1.2)
70+
jquery-rails (4.1.1)
71+
rails-dom-testing (>= 1, < 3)
72+
railties (>= 4.2.0)
73+
thor (>= 0.14, < 2.0)
74+
json (1.8.3)
75+
loofah (2.0.3)
76+
nokogiri (>= 1.5.9)
77+
mail (2.6.4)
78+
mime-types (>= 1.16, < 4)
79+
mime-types (3.0)
80+
mime-types-data (~> 3.2015)
81+
mime-types-data (3.2016.0221)
82+
mini_portile2 (2.0.0)
83+
minitest (5.8.4)
84+
multi_json (1.11.2)
85+
nokogiri (1.6.7.2)
86+
mini_portile2 (~> 2.0.0.rc2)
87+
rack (1.6.4)
88+
rack-test (0.6.3)
89+
rack (>= 1.0)
90+
rails (4.2.5.1)
91+
actionmailer (= 4.2.5.1)
92+
actionpack (= 4.2.5.1)
93+
actionview (= 4.2.5.1)
94+
activejob (= 4.2.5.1)
95+
activemodel (= 4.2.5.1)
96+
activerecord (= 4.2.5.1)
97+
activesupport (= 4.2.5.1)
98+
bundler (>= 1.3.0, < 2.0)
99+
railties (= 4.2.5.1)
100+
sprockets-rails
101+
rails-deprecated_sanitizer (1.0.3)
102+
activesupport (>= 4.2.0.alpha)
103+
rails-dom-testing (1.0.7)
104+
activesupport (>= 4.2.0.beta, < 5.0)
105+
nokogiri (~> 1.6.0)
106+
rails-deprecated_sanitizer (>= 1.0.1)
107+
rails-html-sanitizer (1.0.3)
108+
loofah (~> 2.0)
109+
railties (4.2.5.1)
110+
actionpack (= 4.2.5.1)
111+
activesupport (= 4.2.5.1)
112+
rake (>= 0.8.7)
113+
thor (>= 0.18.1, < 2.0)
114+
rake (11.1.1)
115+
rdoc (4.2.2)
116+
json (~> 1.4)
117+
sass (3.4.21)
118+
sass-rails (5.0.4)
119+
railties (>= 4.0.0, < 5.0)
120+
sass (~> 3.1)
121+
sprockets (>= 2.8, < 4.0)
122+
sprockets-rails (>= 2.0, < 4.0)
123+
tilt (>= 1.1, < 3)
124+
sdoc (0.4.1)
125+
json (~> 1.7, >= 1.7.7)
126+
rdoc (~> 4.0)
127+
simple_form (3.2.1)
128+
actionpack (> 4, < 5.1)
129+
activemodel (> 4, < 5.1)
130+
spring (1.6.4)
131+
sprockets (3.5.2)
132+
concurrent-ruby (~> 1.0)
133+
rack (> 1, < 3)
134+
sprockets-rails (3.0.4)
135+
actionpack (>= 4.0)
136+
activesupport (>= 4.0)
137+
sprockets (>= 3.0.0)
138+
sqlite3 (1.3.11)
139+
thor (0.19.1)
140+
thread_safe (0.3.5)
141+
tilt (2.0.2)
142+
turbolinks (2.5.3)
143+
coffee-rails
144+
tzinfo (1.2.2)
145+
thread_safe (~> 0.1)
146+
uglifier (3.0.0)
147+
execjs (>= 0.3.0, < 3)
148+
web-console (2.3.0)
149+
activemodel (>= 4.0)
150+
binding_of_caller (>= 0.7.2)
151+
railties (>= 4.0)
152+
sprockets-rails (>= 2.0, < 4.0)
153+
154+
PLATFORMS
155+
ruby
156+
157+
DEPENDENCIES
158+
boostrap-sass
159+
byebug
160+
coffee-rails (~> 4.1.0)
161+
haml
162+
jbuilder (~> 2.0)
163+
jquery-rails
164+
rails (= 4.2.5.1)
165+
sass-rails (~> 5.0)
166+
sdoc (~> 0.4.0)
167+
simple_form
168+
spring
169+
sqlite3
170+
turbolinks
171+
uglifier (>= 1.3.0)
172+
web-console (~> 2.0)
173+
174+
BUNDLED WITH
175+
1.11.2

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
## PINTEREST_Board
2+
+ install `gem haml`

Rakefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Add your own tasks in files placed in lib/tasks ending in .rake,
2+
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3+
4+
require File.expand_path('../config/application', __FILE__)
5+
6+
Rails.application.load_tasks

app/assets/images/.keep

Whitespace-only changes.

app/assets/javascripts/application.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// This is a manifest file that'll be compiled into application.js, which will include all the files
2+
// listed below.
3+
//
4+
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5+
// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
6+
//
7+
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8+
// compiled file.
9+
//
10+
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
11+
// about supported directives.
12+
//
13+
//= require jquery
14+
//= require jquery_ujs
15+
//= require turbolinks
16+
//= require_tree .
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/*
2+
* This is a manifest file that'll be compiled into application.css, which will include all the files
3+
* listed below.
4+
*
5+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6+
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7+
*
8+
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
9+
* compiled file so the styles you add here take precedence over styles defined in any styles
10+
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new
11+
* file per style scope.
12+
*
13+
*= require_tree .
14+
*= require_self
15+
*/
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
class ApplicationController < ActionController::Base
2+
# Prevent CSRF attacks by raising an exception.
3+
# For APIs, you may want to use :null_session instead.
4+
protect_from_forgery with: :exception
5+
end

app/controllers/concerns/.keep

Whitespace-only changes.

0 commit comments

Comments
 (0)