Skip to content

Commit 0426ca5

Browse files
author
bjones
committed
Initial commit
Former-commit-id: 7a0dc6e
1 parent 11cbc77 commit 0426ca5

File tree

292 files changed

+16708
-18
lines changed

Some content is hidden

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

292 files changed

+16708
-18
lines changed

.buildpath

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<buildpath>
3+
<buildpathentry kind="src" path=""/>
4+
<buildpathentry kind="con" path="org.eclipse.dltk.launching.INTERPRETER_CONTAINER"/>
5+
</buildpath>

.gitignore

Lines changed: 5 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,5 @@
1-
*.gem
2-
*.rbc
3-
.bundle
4-
.config
5-
coverage
6-
InstalledFiles
7-
lib/bundler/man
8-
pkg
9-
rdoc
10-
spec/reports
11-
test/tmp
12-
test/version_tmp
13-
tmp
14-
15-
# YARD artifacts
16-
.yardoc
17-
_yardoc
18-
doc/
1+
vendor
2+
.bundle
3+
4+
/build
5+
/dist

.project

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>StackCore</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.dltk.core.scriptbuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.eclipse.dltk.ruby.core.nature</nature>
16+
</natures>
17+
</projectDescription>

Gemfile

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
source 'http://rubygems.org'
2+
3+
if RUBY_VERSION =~ /1.9/
4+
Encoding.default_external = Encoding::UTF_8
5+
Encoding.default_internal = Encoding::UTF_8
6+
end
7+
8+
gem 'nokogiri'
9+
gem 'json', '~> 1.6.6'
10+
gem 'roar', '~> 0.9.1'
11+
gem 'erubis', '~> 2.7.0'
12+
gem 'sinatra', '~> 1.3.1'
13+
gem 'thin', '~> 1.3.1'
14+
gem 'rake'
15+
16+
# Data Storage
17+
gem 'mongo', '1.5.2'
18+
gem 'mongo_ext', '~> 0.19', :platform => :ruby # native extensions for performance
19+
gem 'bson_ext', '1.5.2', :platform => :ruby # native extensions for performance
20+
gem 'bson', '1.5.2'
21+
gem 'mongoid', '2.4.3'
22+
23+
# CLI and Offline documentation generator
24+
gem 'httparty', '~> 0.8.1'
25+
gem 'activemodel', '~> 3.2.0'
26+
27+
# Account/Auth support
28+
gem 'bcrypt-ruby', '~> 3.0.1'
29+
30+
# API Doc generation
31+
gem 'redcarpet', '~> 2.1.0'
32+
33+
# Cloud Management
34+
gem 'fog', '~> 1.8', :require => 'fog'
35+
36+
# Flex support hack - allow _method to be passed as a URL parameter for PUT and DELETE
37+
gem 'rack-methodoverride-with-params', '~>1.0.0'
38+
39+
# Test-only
40+
group :development, :test do
41+
gem 'ruby-debug19', :require => 'ruby-debug'
42+
gem 'rspec', '~> 2.4'
43+
gem 'heroku'
44+
gem 'foreman'
45+
gem 'rack-test'
46+
gem 'awesome_print'
47+
gem 'database_cleaner'
48+
gem 'factory_girl', '~> 3.0.0'
49+
end

Gemfile.lock

Lines changed: 165 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,165 @@
1+
GEM
2+
remote: http://rubygems.org/
3+
specs:
4+
activemodel (3.2.7)
5+
activesupport (= 3.2.7)
6+
builder (~> 3.0.0)
7+
activesupport (3.2.7)
8+
i18n (~> 0.6)
9+
multi_json (~> 1.0)
10+
addressable (2.3.2)
11+
archive-tar-minitar (0.5.2)
12+
awesome_print (1.0.2)
13+
bcrypt-ruby (3.0.1)
14+
bcrypt-ruby (3.0.1-java)
15+
bson (1.5.2)
16+
bson (1.5.2-java)
17+
bson_ext (1.5.2)
18+
bson (= 1.5.2)
19+
builder (3.0.0)
20+
columnize (0.3.6)
21+
daemons (1.1.8)
22+
database_cleaner (0.8.0)
23+
diff-lcs (1.1.3)
24+
erubis (2.7.0)
25+
eventmachine (0.12.10)
26+
eventmachine (0.12.10-java)
27+
excon (0.15.5)
28+
factory_girl (3.0.0)
29+
activesupport (>= 3.0.0)
30+
ffi (1.1.4-java)
31+
fog (1.8.0)
32+
builder
33+
excon (~> 0.14)
34+
formatador (~> 0.2.0)
35+
mime-types
36+
multi_json (~> 1.0)
37+
net-scp (~> 1.0.4)
38+
net-ssh (>= 2.1.3)
39+
nokogiri (~> 1.5.0)
40+
ruby-hmac
41+
foreman (0.53.0)
42+
thor (>= 0.13.6)
43+
foreman (0.53.0-java)
44+
posix-spawn (~> 0.3.6)
45+
thor (>= 0.13.6)
46+
formatador (0.2.4)
47+
heroku (2.30.2)
48+
heroku-api (~> 0.3.2)
49+
launchy (>= 0.3.2)
50+
netrc (~> 0.7.5)
51+
rest-client (~> 1.6.1)
52+
rubyzip
53+
heroku-api (0.3.2)
54+
excon (~> 0.15.5)
55+
httparty (0.8.3)
56+
multi_json (~> 1.0)
57+
multi_xml
58+
i18n (0.6.0)
59+
json (1.6.7)
60+
json (1.6.7-java)
61+
launchy (2.1.2)
62+
addressable (~> 2.3)
63+
launchy (2.1.2-java)
64+
addressable (~> 2.3)
65+
ffi (~> 1.1.1)
66+
spoon (~> 0.0.1)
67+
linecache19 (0.5.12)
68+
ruby_core_source (>= 0.1.4)
69+
mime-types (1.19)
70+
mongo (1.5.2)
71+
bson (= 1.5.2)
72+
mongo_ext (0.19.3)
73+
mongoid (2.4.3)
74+
activemodel (~> 3.1)
75+
mongo (~> 1.3)
76+
tzinfo (~> 0.3.22)
77+
multi_json (1.3.6)
78+
multi_xml (0.5.1)
79+
net-scp (1.0.4)
80+
net-ssh (>= 1.99.1)
81+
net-ssh (2.5.2)
82+
netrc (0.7.5)
83+
nokogiri (1.5.5)
84+
nokogiri (1.5.5-java)
85+
posix-spawn (0.3.6)
86+
rack (1.4.1)
87+
rack-methodoverride-with-params (1.0.0)
88+
rack (~> 1)
89+
rack-protection (1.2.0)
90+
rack
91+
rack-test (0.6.1)
92+
rack (>= 1.0)
93+
rake (0.9.2.2)
94+
redcarpet (2.1.1)
95+
representable (1.2.3)
96+
json
97+
nokogiri
98+
rest-client (1.6.7)
99+
mime-types (>= 1.16)
100+
roar (0.9.2)
101+
representable (~> 1.1)
102+
rspec (2.11.0)
103+
rspec-core (~> 2.11.0)
104+
rspec-expectations (~> 2.11.0)
105+
rspec-mocks (~> 2.11.0)
106+
rspec-core (2.11.1)
107+
rspec-expectations (2.11.2)
108+
diff-lcs (~> 1.1.3)
109+
rspec-mocks (2.11.1)
110+
ruby-debug-base19 (0.11.25)
111+
columnize (>= 0.3.1)
112+
linecache19 (>= 0.5.11)
113+
ruby_core_source (>= 0.1.4)
114+
ruby-debug19 (0.11.6)
115+
columnize (>= 0.3.1)
116+
linecache19 (>= 0.5.11)
117+
ruby-debug-base19 (>= 0.11.19)
118+
ruby-hmac (0.4.0)
119+
ruby_core_source (0.1.5)
120+
archive-tar-minitar (>= 0.5.2)
121+
rubyzip (0.9.9)
122+
sinatra (1.3.2)
123+
rack (~> 1.3, >= 1.3.6)
124+
rack-protection (~> 1.2)
125+
tilt (~> 1.3, >= 1.3.3)
126+
spoon (0.0.1)
127+
thin (1.3.1)
128+
daemons (>= 1.0.9)
129+
eventmachine (>= 0.12.6)
130+
rack (>= 1.0.0)
131+
thor (0.15.4)
132+
tilt (1.3.3)
133+
tzinfo (0.3.33)
134+
135+
PLATFORMS
136+
java
137+
ruby
138+
139+
DEPENDENCIES
140+
activemodel (~> 3.2.0)
141+
awesome_print
142+
bcrypt-ruby (~> 3.0.1)
143+
bson (= 1.5.2)
144+
bson_ext (= 1.5.2)
145+
database_cleaner
146+
erubis (~> 2.7.0)
147+
factory_girl (~> 3.0.0)
148+
fog (~> 1.8)
149+
foreman
150+
heroku
151+
httparty (~> 0.8.1)
152+
json (~> 1.6.6)
153+
mongo (= 1.5.2)
154+
mongo_ext (~> 0.19)
155+
mongoid (= 2.4.3)
156+
nokogiri
157+
rack-methodoverride-with-params (~> 1.0.0)
158+
rack-test
159+
rake
160+
redcarpet (~> 2.1.0)
161+
roar (~> 0.9.1)
162+
rspec (~> 2.4)
163+
ruby-debug19
164+
sinatra (~> 1.3.1)
165+
thin (~> 1.3.1)

Procfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
web: bundle exec rackup -I. config.ru -p $PORT

0 commit comments

Comments
 (0)