Initial commit
This commit is contained in:
commit
9c4856bdb1
73 changed files with 1393 additions and 0 deletions
45
Gemfile
Normal file
45
Gemfile
Normal file
|
@ -0,0 +1,45 @@
|
|||
source 'https://rubygems.org'
|
||||
|
||||
gem 'rails', '4.2.5.1'
|
||||
gem 'sqlite3'
|
||||
gem 'sass-rails', '~> 5.0'
|
||||
gem 'uglifier', '>= 1.3.0'
|
||||
gem 'coffee-rails', '~> 4.1.0'
|
||||
gem 'therubyracer', platforms: :ruby
|
||||
gem 'jquery-rails'
|
||||
gem 'jbuilder', '~> 2.0'
|
||||
gem 'sdoc', '~> 0.4.0', group: :doc
|
||||
gem 'puma'
|
||||
|
||||
gem 'haml-rails'
|
||||
gem 'pg'
|
||||
gem 'dotenv-rails'
|
||||
|
||||
gem 'grape'
|
||||
gem 'grape-route-helpers'
|
||||
gem 'grape-entity'
|
||||
gem 'hashie-forbidden_attributes'
|
||||
|
||||
gem 'http'
|
||||
gem 'addressable'
|
||||
gem 'nokogiri'
|
||||
gem 'ostatus2'
|
||||
gem 'goldfinger'
|
||||
|
||||
group :development, :test do
|
||||
gem 'byebug'
|
||||
gem 'rspec-rails'
|
||||
gem 'quiet_assets'
|
||||
gem 'nyan-cat-formatter'
|
||||
gem 'pry-rails'
|
||||
end
|
||||
|
||||
group :development do
|
||||
gem 'web-console', '~> 2.0'
|
||||
gem 'spring'
|
||||
gem 'rubocop', require: false
|
||||
end
|
||||
|
||||
group :production do
|
||||
gem 'rails_12factor'
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue