Skip to content

Commit

Permalink
Merge commit 'db487966991029650012624a766b67270cde96ad' as 'github.co…
Browse files Browse the repository at this point in the history
…m/FTBpro/count-von-count'
  • Loading branch information
mindreframer committed Jan 10, 2014
2 parents 4b3b6df + db48796 commit dd25493
Show file tree
Hide file tree
Showing 35 changed files with 2,205 additions and 0 deletions.
1 change: 1 addition & 0 deletions github.com/FTBpro/count-von-count/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
config/personal.yml
4 changes: 4 additions & 0 deletions github.com/FTBpro/count-von-count/Capfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
load 'deploy'
# Uncomment if you are using Rails' asset pipeline
# load 'deploy/assets'
load 'config/deploy' # remove this line to skip loading any of the default tasks
13 changes: 13 additions & 0 deletions github.com/FTBpro/count-von-count/Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
source 'https://rubygems.org'

group :development, :test do
gem 'guard'
gem 'guard-rspec'
gem 'spork'
gem 'rspec'
gem 'redis'
gem 'redis-rails'
gem 'capistrano'
gem 'json'
gem 'debugger'
end
128 changes: 128 additions & 0 deletions github.com/FTBpro/count-von-count/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,128 @@
GEM
remote: https://rubygems.org/
specs:
actionpack (3.2.11)
activemodel (= 3.2.11)
activesupport (= 3.2.11)
builder (~> 3.0.0)
erubis (~> 2.7.0)
journey (~> 1.0.4)
rack (~> 1.4.0)
rack-cache (~> 1.2)
rack-test (~> 0.6.1)
sprockets (~> 2.2.1)
activemodel (3.2.11)
activesupport (= 3.2.11)
builder (~> 3.0.0)
activesupport (3.2.11)
i18n (~> 0.6)
multi_json (~> 1.0)
builder (3.0.4)
capistrano (2.15.5)
highline
net-scp (>= 1.0.0)
net-sftp (>= 2.0.0)
net-ssh (>= 2.0.14)
net-ssh-gateway (>= 1.1.0)
coderay (1.0.9)
columnize (0.3.6)
debugger (1.6.2)
columnize (>= 0.3.1)
debugger-linecache (~> 1.2.0)
debugger-ruby_core_source (~> 1.2.3)
debugger-linecache (1.2.0)
debugger-ruby_core_source (1.2.3)
diff-lcs (1.2.4)
erubis (2.7.0)
ffi (1.9.0)
formatador (0.2.4)
guard (1.8.3)
formatador (>= 0.2.4)
listen (~> 1.3)
lumberjack (>= 1.0.2)
pry (>= 0.9.10)
thor (>= 0.14.6)
guard-rspec (2.5.0)
guard (>= 1.1)
rspec (~> 2.11)
highline (1.6.19)
hike (1.2.1)
i18n (0.6.4)
journey (1.0.4)
json (1.8.0)
listen (1.3.1)
rb-fsevent (>= 0.9.3)
rb-inotify (>= 0.9)
rb-kqueue (>= 0.2)
lumberjack (1.0.4)
method_source (0.8.2)
multi_json (1.6.1)
net-scp (1.1.2)
net-ssh (>= 2.6.5)
net-sftp (2.1.2)
net-ssh (>= 2.6.5)
net-ssh (2.7.0)
net-ssh-gateway (1.2.0)
net-ssh (>= 2.6.5)
pry (0.9.12.2)
coderay (~> 1.0.5)
method_source (~> 0.8)
slop (~> 3.4)
rack (1.4.5)
rack-cache (1.2)
rack (>= 0.4)
rack-test (0.6.2)
rack (>= 1.0)
rb-fsevent (0.9.3)
rb-inotify (0.9.2)
ffi (>= 0.5.0)
rb-kqueue (0.2.0)
ffi (>= 0.5.0)
redis (3.0.3)
redis-actionpack (3.2.3)
actionpack (~> 3.2.3)
redis-rack (~> 1.4.0)
redis-store (~> 1.1.0)
redis-activesupport (3.2.3)
activesupport (~> 3.2.3)
redis-store (~> 1.1.0)
redis-rack (1.4.2)
rack (~> 1.4.1)
redis-store (~> 1.1.0)
redis-rails (3.2.3)
redis-actionpack (~> 3.2.3)
redis-activesupport (~> 3.2.3)
redis-store (~> 1.1.0)
redis-store (1.1.3)
redis (>= 2.2.0)
rspec (2.14.1)
rspec-core (~> 2.14.0)
rspec-expectations (~> 2.14.0)
rspec-mocks (~> 2.14.0)
rspec-core (2.14.5)
rspec-expectations (2.14.3)
diff-lcs (>= 1.1.3, < 2.0)
rspec-mocks (2.14.3)
slop (3.4.6)
spork (1.0.0rc3)
sprockets (2.2.2)
hike (~> 1.2)
multi_json (~> 1.0)
rack (~> 1.0)
tilt (~> 1.1, != 1.3.0)
thor (0.18.1)
tilt (1.3.5)

PLATFORMS
ruby

DEPENDENCIES
capistrano
debugger
guard
guard-rspec
json
redis
redis-rails
rspec
spork
5 changes: 5 additions & 0 deletions github.com/FTBpro/count-von-count/Guardfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
guard :rspec, all_on_start:false, notification:false, cli: "--color --format nested --fail-fast --drb" do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { "spec" }
end
Loading

0 comments on commit dd25493

Please sign in to comment.