Skip to content
This repository was archived by the owner on Mar 12, 2019. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
b921aa8
Update gems
matthewbarram Aug 7, 2014
2c1dbe3
Update gem files
matthewbarram Aug 7, 2014
7af58be
doc and secrets
ecoologic Aug 7, 2014
5dce34f
rename `Ticket` -> `Event` (to store location next)
ecoologic Aug 7, 2014
39be133
text flexible customization
ecoologic Aug 7, 2014
2d84357
flexible config for time and location
ecoologic Aug 7, 2014
79a3abd
doc and spec update
ecoologic Aug 8, 2014
1322ecd
Merge branch 'updating_gems_to_allow_bundle' into 2014
ecoologic Aug 8, 2014
5879519
fix dependencies and active admin
ecoologic Aug 8, 2014
5befaa3
fix coffee syntax
ecoologic Aug 8, 2014
6a934c1
use rspec 2
ecoologic Aug 8, 2014
370e80f
fix spec run and deploy (hopefully)
ecoologic Aug 8, 2014
1fd9362
tmp production
ecoologic Aug 8, 2014
77fb891
doc
ecoologic Aug 8, 2014
6b7b941
add addressable, used for emails (was previously dependency of launchy)
ecoologic Aug 8, 2014
a045fc1
remove addressable
ecoologic Aug 8, 2014
71ebb0a
back to previous implementation
ecoologic Aug 8, 2014
588317f
after Lisa's requests
ecoologic Aug 8, 2014
e54b41d
2014 customization
ecoologic Aug 11, 2014
aad944b
drink amends
ecoologic Aug 11, 2014
b762b11
ready for master
ecoologic Aug 11, 2014
af54f2d
better date
ecoologic Aug 11, 2014
e2d1a53
server updates
ecoologic Aug 11, 2014
ecde0a8
don't use factories
ecoologic Aug 11, 2014
884bb1d
css and date
ecoologic Aug 11, 2014
ea5109c
date update
ecoologic Aug 11, 2014
3a9ead1
css better style
ecoologic Aug 11, 2014
b0073c8
fixes
ecoologic Aug 11, 2014
abd7946
with $ sign
ecoologic Aug 11, 2014
427c773
powerhouse images
ecoologic Aug 11, 2014
70740d3
event in october
ecoologic Aug 11, 2014
40d5a91
final tweaks
ecoologic Aug 13, 2014
86ad301
touch apple icons
ecoologic Aug 14, 2014
90d712b
fixes
ecoologic Aug 15, 2014
337e530
to be sure
ecoologic Aug 15, 2014
17e5112
update merchant id and some most needed cleanup and security (bonus: …
ecoologic Aug 25, 2014
2aead82
payment log and credentials
ecoologic Aug 26, 2014
3245330
log more info
ecoologic Aug 26, 2014
56c114e
more doc
ecoologic Aug 26, 2014
cef17c0
update
ecoologic Aug 26, 2014
c265c18
all specs green
ecoologic Aug 26, 2014
63c0914
text amends
ecoologic Sep 2, 2014
9089c9c
dynamic date
ecoologic Sep 3, 2014
e217f16
remove duplication
ecoologic Sep 3, 2014
be434c8
text amends again
ecoologic Sep 3, 2014
20e7776
guess what? text changes
ecoologic Sep 5, 2014
763de3b
format html
ecoologic Sep 5, 2014
3caca17
a few fixes
ecoologic Sep 24, 2014
dafa787
log delivery errors
ecoologic Sep 24, 2014
c530dd7
log mail errors
ecoologic Sep 24, 2014
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ tags
*~
rerun.txt
.bundle
db/schema.rb
specifications
cache
gems
Expand All @@ -31,6 +30,8 @@ public/uploads
dump.rdb
zeus.json
config/database.yml
config/payway.yml
*.pem
images/*
logfile
.vagrant/*
31 changes: 17 additions & 14 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ source 'https://rubygems.org'
gem 'rails', '4.0.0'

gem 'rails-observers'
gem 'debugger'
gem 'active_model_serializers'
gem 'bcrypt-ruby'
gem 'braintree'
Expand All @@ -19,46 +18,50 @@ gem 'sidekiq'
gem 'state_machine'
gem 'turbolinks'
gem 'uglifier'
gem 'compass-rails', github: 'milgner/compass-rails', branch: 'rails4'
gem 'formtastic', github: 'justinfrench/formtastic', branch: 'rails4beta'
gem 'responders', github: 'plataformatec/responders'
gem 'inherited_resources', github: 'josevalim/inherited_resources'
gem 'ransack', github: 'ernie/ransack', branch: 'rails-4'
gem 'activeadmin', github: 'akashkamboj/active_admin', branch: 'rails4'
gem 'devise'
gem 'compass-rails'
gem 'formtastic'
gem 'responders'
gem 'inherited_resources'
gem 'ransack', github: 'ernie/ransack'
gem 'activeadmin', github: 'gregbell/active_admin'
gem 'jbuilder', '1.0.2'
gem 'rdoc', '3.12.2'
gem 'sdoc', '0.3.20'
gem 'sprockets', '2.11.0' # the activeadmin required devise tried to install v2.12.0 but which was expecting different apis
gem 'sprockets-rails', :require => 'sprockets/railtie'
gem 'slim', ">= 1.3.0"
gem 'sinatra', '>= 1.3.0', :require => nil
gem 'turbolinks'
gem "jquery-rails", "2.3.0"
gem 'launchy'
gem 'activemerchant-payway'
gem 'addressable'
gem 'launchy'

group :staging, :production do
gem 'unicorn'
end

group :development do
gem 'capistrano'
gem 'capistrano', '< 3'
gem "capistrano-sidekiq"
gem 'capistrano-ext'
end

group :development, :test do
gem 'awesome_print'
gem 'coveralls', require: false
gem 'faker'
gem 'factory_girl_rails'
gem 'guard-rspec'
gem 'pry'
gem 'pry-meta'
gem 'rb-fsevent', '~> 0.9.1'
gem 'rspec-rails'
gem 'konacha'
gem 'thin'
end

group :test do
gem 'faker'
gem 'factory_girl_rails'
gem 'rspec', '< 3' # we're using the old syntax
gem 'rspec-rails'
gem 'capybara'
gem 'poltergeist'
gem 'database_cleaner'
Expand Down
Loading