Skip to content
This repository was archived by the owner on Jul 23, 2020. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
88b5130
Update rails and README
EnriqueVidal Aug 2, 2013
8230213
New improvements list
EnriqueVidal Sep 20, 2012
e283f24
Update sass coffeescript and uglifier
EnriqueVidal Aug 2, 2013
22d6817
Update test suite and get model specs green
EnriqueVidal Aug 2, 2013
db17bff
Remove evergreen since it's now unmaintained
EnriqueVidal Aug 2, 2013
acd8a0f
Get controller specs green
EnriqueVidal Aug 2, 2013
527305d
Too soon? Remove markdown editor from our assets
EnriqueVidal Aug 3, 2013
53edfdf
Update the hash syntax
EnriqueVidal Aug 3, 2013
b5e7e39
Add config generate task
EnriqueVidal Aug 3, 2013
870370b
Remove fat
EnriqueVidal Aug 3, 2013
743e831
Update travis recipe and set ruby-version
EnriqueVidal Aug 4, 2013
128f000
Force test env on spec_helper
EnriqueVidal Aug 4, 2013
f0938ff
Create postgres cms role in travis
EnriqueVidal Aug 4, 2013
7eaca4c
Update README links
EnriqueVidal Aug 4, 2013
61cd3a8
Generate secret_token from config:generate task
EnriqueVidal Aug 4, 2013
e3e9ec4
Add migrate to the travis recipe
EnriqueVidal Aug 4, 2013
af6c97a
Reset schema.rb
EnriqueVidal Aug 4, 2013
810f821
Add bootstrap_pagedown and remove keywords from pages
EnriqueVidal Sep 15, 2013
0d885e3
Add pip and pygments to travis config
EnriqueVidal Sep 15, 2013
52a8a8f
Instruct travis to create all databases before running the test suite
EnriqueVidal Sep 15, 2013
6b7626a
Update build image as per travis Markdown
EnriqueVidal Sep 15, 2013
56d6942
Fix the rails_best_practices notices that made sense
EnriqueVidal Sep 15, 2013
efd6e29
Remove jquery-ui
EnriqueVidal Sep 17, 2013
00d5273
Put binstubs in version control
EnriqueVidal Sep 19, 2013
5c28517
Remove assets for the time being and update bootstrap_pagedown
EnriqueVidal Sep 19, 2013
e835f15
Remove uploadify assets, carrierwave and rmagick
EnriqueVidal Sep 19, 2013
8230a12
Replace contactform ActiveModel class with mail_form and DRY out page…
EnriqueVidal Sep 20, 2013
f3924c4
DRY out controllers
EnriqueVidal Sep 20, 2013
fbad092
Fix spanish translation pluralization
EnriqueVidal Sep 20, 2013
1874a52
Refactor section helpers
EnriqueVidal Sep 20, 2013
1fe179d
Improve subsection support
EnriqueVidal Sep 21, 2013
4838220
Update bootstrap_pagedown to include pagedown-extra
EnriqueVidal Oct 5, 2013
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
30 changes: 10 additions & 20 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,21 +1,11 @@
log/*.log
tmp/*
tmp/**/*
doc/api
doc/app
db/*.sqlite3
.sass-cache/
public/stylesheets/*.css
.rspec/
*.swp
*~
.DS_Store
public/images/system
public/system
public/.htaccess
public/assets
*.bak
Thumbs.db
.bundle
bin/
/.bundle
/log/*.log
/tmp
config/vhost.conf
config/database.yml
public/assets
public/system
.sass-cache
tags
coverage
config/initializers/secret_token.rb
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.0.0-p247
18 changes: 11 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
before_script: "RAILS_ENV=development bundle exec rake db:migrate db:test:prepare"
script: "bundle exec rake spec"
before_script:
- sudo apt-get install python-pip
- sudo pip install pygments
- sudo -u postgres createuser cms -dSR
- RAILS_ENV=development bundle exec rake db:create:all config:generate
- 'sh -e /etc/init.d/xvfb start'
- bundle exec rake db:migrate db:test:prepare
script:
- 'DISPLAY=:99.0 bundle exec rake spec'
rvm:
- 1.8.7
- 1.9.2
- ree
- 2.0.0
- 1.9.3
notifications:
recipients:
- enrique@cloverinteractive.com
- alejandro@cloverinteractive.com
- adan@cloverinteractive.com
- alexperto@cloveritneractive.com
51 changes: 19 additions & 32 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,67 +1,54 @@
source 'http://rubygems.org'

gem 'rails', '3.2.8'
gem 'rails', '3.2.14'
gem 'pg'

gem 'will_paginate'
gem 'bootstrap-will_paginate'
gem 'haml-rails'
gem 'devise'
gem 'paperclip'
gem 'acts-as-taggable-on'
gem 'devise_invitable'
gem 'tabs_on_rails'
gem 'jquery-rails'
gem 'simple_form'
gem 'single_test'
gem 'capistrano'
gem 'mime-types', :require => 'mime/types'
gem 'symbolize'
gem 'friendly_id', '~> 4.0.1'
gem 'redcarpet', '2.2.2'
gem 'pygments.rb', '0.4.2'
gem 'mail_form'

group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'debugger'
gem 'quiet_assets'
gem 'bullet'
gem 'pry-rails'
gem 'rails_best_practices'
end

group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
gem 'therubyracer', platforms: :ruby
gem 'compass-rails'
gem 'bootstrap-sass'
gem 'bootstrap_pagedown'
gem 'fancybox-rails'
gem 'turbo-sprockets-rails3'
end

group :development, :test do
gem "rspec-rails", "~> 2.6"
gem 'rspec-rails'
gem 'single_test'
gem 'launchy'
end

group :test do
gem 'database_cleaner'
gem 'factory_girl_rails'
gem 'capybara-webkit'
gem 'mocha', :require => false
end

platforms :ruby do
group :test, :development do
gem 'sqlite3'
end

group :production do
gem 'mysql2'
end
end

platforms :jruby do
gem 'activerecord-jdbc-adapter'
gem 'jruby-openssl'
gem 'trinidad'
gem 'ffi-ncurses'

group :test, :development do
gem 'jdbc-sqlite3'
end

group :production do
gem 'jdbc-mysql', :require => false
end
gem 'simplecov'
end
Loading