Skip to content

Commit

Permalink
pinoyrb rises
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanbibat committed Apr 9, 2013
1 parent 55953c5 commit aa2490a
Show file tree
Hide file tree
Showing 93 changed files with 1,972 additions and 471 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ capybara-*.html
**.orig
rerun.txt
pickle-email-*.html
/config/database.yml
/config/database.yml
/bin
1 change: 1 addition & 0 deletions .rspec
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
--color
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.0.0-p0
2 changes: 1 addition & 1 deletion .rvmrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# First we specify our desired <ruby>[@<gemset>], the @gemset name is optional,
# Only full ruby name is supported here, for short names use:
# echo "rvm use 1.9.3" > .rvmrc
environment_id="ruby-1.9.3-p194@phrug"
environment_id="ruby-2.0.0-p0@phrug"

# Uncomment the following lines if you want to verify rvm version per project
# rvmrc_rvm_version="1.15.9 (stable)" # 1.10.1 seams as a safe start
Expand Down
60 changes: 29 additions & 31 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,61 +1,59 @@
source 'https://rubygems.org'

gem 'rails', '3.2.8'

# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'rails', '3.2.13'

gem 'pg'
gem 'puma', '2.0.0.b7'

gem 'haml-rails', '~> 0.3.4'

# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.5'
gem 'coffee-rails', '~> 3.2.2'

# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby

gem 'uglifier', '>= 1.2.7'
end

gem 'jquery-rails', '>=2.1.1'

# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'

# To use Jbuilder templates for JSON
# gem 'jbuilder'

# Use unicorn as the app server
# gem 'unicorn'
gem 'rails_admin'

gem 'haml'
gem 'jquery-rails', '>=2.1.1'
gem 'devise', '>=2.1.2'
gem 'cancan', '>= 1.6.8'

gem 'friendly_id', '>= 4.0.8'
gem 'simple_form', '>=2.0.2'
gem 'kaminari', '>= 0.13.0'

gem 'meta-tags', :require => 'meta_tags'
gem 'redcarpet'

group :development do
group :development, :test do
gem 'rspec-rails', '>= 2.12.0'
gem 'haml-rails', '~> 0.4'
gem 'mina'
gem 'pry'
gem 'html2haml'
gem 'ruby_parser'
gem 'erubis'
gem 'better_errors'
gem 'binding_of_caller'
gem 'meta_request'
gem 'quiet_assets'
end


group :test do
gem 'rspec-rails', '>= 2.11.0'
gem 'factory_girl_rails', '>= 4.0.0'
gem 'email_spec', '>= 1.2.1'
gem 'shoulda', '>=3.1.1'
gem 'capybara', '>= 1.1.2'
gem 'capybara', '~> 2.1.0.rc1'
gem 'database_cleaner', '>= 0.8.0'
gem 'cucumber-rails', '>= 1.3.0'
gem 'spork', '>= 0.9.2'
end
gem 'guard'
gem 'guard'
gem 'guard-bundler'
gem 'guard-rspec'
gem 'guard-spork'
gem 'guard-puma'
gem 'launchy'
gem 'simplecov', :require => false
gem 'growl'
gem 'libnotify'
gem 'rb-inotify', :require => false
gem 'rb-fsevent', :require => false
gem 'shoulda-matchers'
end
Loading

0 comments on commit aa2490a

Please sign in to comment.