Skip to content

Commit 060edb0

Browse files
committed
Initial rails upload
1 parent b059b1e commit 060edb0

File tree

109 files changed

+10180
-0
lines changed

Some content is hidden

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

109 files changed

+10180
-0
lines changed

.project

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>compensato</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.wst.jsdt.core.javascriptValidator</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.eclipse.wst.jsdt.core.jsNature</nature>
16+
</natures>
17+
</projectDescription>

.settings/.jsdtscope

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path=""/>
4+
<classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.JRE_CONTAINER"/>
5+
<classpathentry kind="output" path=""/>
6+
</classpath>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
org.eclipse.wst.jsdt.launching.JRE_CONTAINER
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Global

Gemfile

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'rails', '3.2.6'
4+
5+
# Bundle edge Rails instead:
6+
# gem 'rails', :git => 'git://github.com/rails/rails.git'
7+
8+
gem 'sqlite3'
9+
10+
11+
# Gems used only for assets and not required
12+
# in production environments by default.
13+
group :assets do
14+
gem 'sass-rails', '~> 3.2.3'
15+
gem 'coffee-rails', '~> 3.2.1'
16+
17+
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
18+
# gem 'therubyracer', :platforms => :ruby
19+
20+
gem 'uglifier', '>= 1.0.3'
21+
end
22+
23+
gem 'jquery-rails'
24+
25+
# To use ActiveModel has_secure_password
26+
# gem 'bcrypt-ruby', '~> 3.0.0'
27+
28+
# To use Jbuilder templates for JSON
29+
# gem 'jbuilder'
30+
31+
# Use unicorn as the app server
32+
# gem 'unicorn'
33+
34+
# Deploy with Capistrano
35+
# gem 'capistrano'
36+
37+
# To use debugger
38+
# gem 'debugger'

Gemfile.lock

+110
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actionmailer (3.2.6)
5+
actionpack (= 3.2.6)
6+
mail (~> 2.4.4)
7+
actionpack (3.2.6)
8+
activemodel (= 3.2.6)
9+
activesupport (= 3.2.6)
10+
builder (~> 3.0.0)
11+
erubis (~> 2.7.0)
12+
journey (~> 1.0.1)
13+
rack (~> 1.4.0)
14+
rack-cache (~> 1.2)
15+
rack-test (~> 0.6.1)
16+
sprockets (~> 2.1.3)
17+
activemodel (3.2.6)
18+
activesupport (= 3.2.6)
19+
builder (~> 3.0.0)
20+
activerecord (3.2.6)
21+
activemodel (= 3.2.6)
22+
activesupport (= 3.2.6)
23+
arel (~> 3.0.2)
24+
tzinfo (~> 0.3.29)
25+
activeresource (3.2.6)
26+
activemodel (= 3.2.6)
27+
activesupport (= 3.2.6)
28+
activesupport (3.2.6)
29+
i18n (~> 0.6)
30+
multi_json (~> 1.0)
31+
arel (3.0.2)
32+
builder (3.0.0)
33+
coffee-rails (3.2.2)
34+
coffee-script (>= 2.2.0)
35+
railties (~> 3.2.0)
36+
coffee-script (2.2.0)
37+
coffee-script-source
38+
execjs
39+
coffee-script-source (1.3.3)
40+
erubis (2.7.0)
41+
execjs (1.4.0)
42+
multi_json (~> 1.0)
43+
hike (1.2.1)
44+
i18n (0.6.0)
45+
journey (1.0.3)
46+
jquery-rails (2.0.2)
47+
railties (>= 3.2.0, < 5.0)
48+
thor (~> 0.14)
49+
mail (2.4.4)
50+
i18n (>= 0.4.0)
51+
mime-types (~> 1.16)
52+
treetop (~> 1.4.8)
53+
mime-types (1.19)
54+
multi_json (1.3.6)
55+
polyglot (0.3.3)
56+
rack (1.4.1)
57+
rack-cache (1.2)
58+
rack (>= 0.4)
59+
rack-ssl (1.3.2)
60+
rack
61+
rack-test (0.6.1)
62+
rack (>= 1.0)
63+
rails (3.2.6)
64+
actionmailer (= 3.2.6)
65+
actionpack (= 3.2.6)
66+
activerecord (= 3.2.6)
67+
activeresource (= 3.2.6)
68+
activesupport (= 3.2.6)
69+
bundler (~> 1.0)
70+
railties (= 3.2.6)
71+
railties (3.2.6)
72+
actionpack (= 3.2.6)
73+
activesupport (= 3.2.6)
74+
rack-ssl (~> 1.3.2)
75+
rake (>= 0.8.7)
76+
rdoc (~> 3.4)
77+
thor (>= 0.14.6, < 2.0)
78+
rake (0.9.2.2)
79+
rdoc (3.9.4)
80+
sass (3.1.19)
81+
sass-rails (3.2.5)
82+
railties (~> 3.2.0)
83+
sass (>= 3.1.10)
84+
tilt (~> 1.3)
85+
sprockets (2.1.3)
86+
hike (~> 1.2)
87+
multi_json (~> 1.0)
88+
rack (~> 1.0)
89+
tilt (~> 1.1, != 1.3.0)
90+
sqlite3 (1.3.6)
91+
thor (0.15.3)
92+
tilt (1.3.3)
93+
treetop (1.4.10)
94+
polyglot
95+
polyglot (>= 0.3.1)
96+
tzinfo (0.3.33)
97+
uglifier (1.2.5)
98+
execjs (>= 0.3.0)
99+
multi_json (~> 1.3)
100+
101+
PLATFORMS
102+
ruby
103+
104+
DEPENDENCIES
105+
coffee-rails (~> 3.2.1)
106+
jquery-rails
107+
rails (= 3.2.6)
108+
sass-rails (~> 3.2.3)
109+
sqlite3
110+
uglifier (>= 1.0.3)

0 commit comments

Comments
 (0)