Skip to content

Commit

Permalink
[checkpoint] 1
Browse files Browse the repository at this point in the history
  • Loading branch information
dodo121 committed Sep 29, 2015
1 parent 539558c commit 38fc45c
Show file tree
Hide file tree
Showing 38 changed files with 930 additions and 30 deletions.
10 changes: 10 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
AllCops:
RunRailsCops: true
Include:
- '**/Gemfile'
- '**/Rakefile'
Exclude:
- 'bin/*'
- 'db/seeds.rb'
- 'db/schema.rb'
- 'vendor/bundle/**/*'
46 changes: 45 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.

gem 'decent_exposure'
gem 'decent_generators'

# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
Expand All @@ -45,3 +46,46 @@ group :development do
gem 'spring'
end


gem 'bootstrap-sass'
gem 'devise'
gem 'haml-rails'
gem 'pg'
gem 'simple_form'

group :development do
gem 'better_errors'
gem 'guard-bundler'
gem 'guard-rails'
gem 'guard-rspec'
gem 'html2haml'
gem 'quiet_assets'
gem 'rails_apps_pages'
gem 'rails_apps_testing'
gem 'rails_layout'
gem 'rb-fchange', :require=>false
gem 'rb-fsevent', :require=>false
gem 'rb-inotify', :require=>false
gem 'spring-commands-rspec'
end

group :development, :test do
gem 'factory_girl_rails'
gem 'faker'
gem 'pry-rails'
gem 'pry-rescue'
gem 'rspec-rails'
gem 'rubocop'
end

group :production do
gem 'rails_12factor'
end

group :test do
gem 'capybara'
gem 'database_cleaner'
gem 'launchy'
gem 'selenium-webdriver'
end

Loading

0 comments on commit 38fc45c

Please sign in to comment.