Add initial development gems
This commit is contained in:
parent
80bdf9c094
commit
da70b1750a
2 changed files with 67 additions and 0 deletions
12
Gemfile
12
Gemfile
|
@ -7,6 +7,8 @@ gem 'rails', '3.2.11'
|
|||
|
||||
gem 'sqlite3'
|
||||
|
||||
gem 'thin'
|
||||
|
||||
|
||||
# Gems used only for assets and not required
|
||||
# in production environments by default.
|
||||
|
@ -22,6 +24,16 @@ end
|
|||
|
||||
gem 'jquery-rails'
|
||||
|
||||
group :development do
|
||||
gem 'brakeman'
|
||||
gem 'better_errors'
|
||||
gem 'binding_of_caller'
|
||||
gem 'meta_request'
|
||||
gem 'rack-mini-profiler'
|
||||
gem 'rails-footnotes'
|
||||
# run `rails generate rails_footnotes:install`
|
||||
end
|
||||
|
||||
# To use ActiveModel has_secure_password
|
||||
# gem 'bcrypt-ruby', '~> 3.0.0'
|
||||
|
||||
|
|
55
Gemfile.lock
55
Gemfile.lock
|
@ -29,7 +29,24 @@ GEM
|
|||
i18n (~> 0.6)
|
||||
multi_json (~> 1.0)
|
||||
arel (3.0.2)
|
||||
better_errors (0.7.2)
|
||||
coderay (>= 1.0.0)
|
||||
erubis (>= 2.6.6)
|
||||
binding_of_caller (0.7.1)
|
||||
debug_inspector (>= 0.0.1)
|
||||
brakeman (1.9.4)
|
||||
erubis (~> 2.6)
|
||||
fastercsv (~> 1.5)
|
||||
haml (>= 3.0, < 5.0)
|
||||
highline (~> 1.6)
|
||||
multi_json (~> 1.2)
|
||||
ruby2ruby (~> 2.0)
|
||||
ruby_parser (~> 3.1.1)
|
||||
sass (~> 3.0)
|
||||
slim (~> 1.3.6)
|
||||
terminal-table (~> 1.4)
|
||||
builder (3.0.4)
|
||||
coderay (1.0.9)
|
||||
coffee-rails (3.2.2)
|
||||
coffee-script (>= 2.2.0)
|
||||
railties (~> 3.2.0)
|
||||
|
@ -37,9 +54,16 @@ GEM
|
|||
coffee-script-source
|
||||
execjs
|
||||
coffee-script-source (1.6.2)
|
||||
daemons (1.1.9)
|
||||
debug_inspector (0.0.2)
|
||||
erubis (2.7.0)
|
||||
eventmachine (1.0.3)
|
||||
execjs (1.4.0)
|
||||
multi_json (~> 1.0)
|
||||
fastercsv (1.5.5)
|
||||
haml (4.0.1)
|
||||
tilt
|
||||
highline (1.6.16)
|
||||
hike (1.2.1)
|
||||
i18n (0.6.4)
|
||||
journey (1.0.4)
|
||||
|
@ -51,12 +75,19 @@ GEM
|
|||
i18n (>= 0.4.0)
|
||||
mime-types (~> 1.16)
|
||||
treetop (~> 1.4.8)
|
||||
meta_request (0.2.3)
|
||||
rack-contrib
|
||||
railties
|
||||
mime-types (1.21)
|
||||
multi_json (1.7.2)
|
||||
polyglot (0.3.3)
|
||||
rack (1.4.5)
|
||||
rack-cache (1.2)
|
||||
rack (>= 0.4)
|
||||
rack-contrib (1.1.0)
|
||||
rack (>= 0.9.1)
|
||||
rack-mini-profiler (0.1.23)
|
||||
rack (>= 1.1.3)
|
||||
rack-ssl (1.3.3)
|
||||
rack
|
||||
rack-test (0.6.2)
|
||||
|
@ -69,6 +100,8 @@ GEM
|
|||
activesupport (= 3.2.11)
|
||||
bundler (~> 1.0)
|
||||
railties (= 3.2.11)
|
||||
rails-footnotes (3.7.9)
|
||||
rails (>= 3.0.0)
|
||||
railties (3.2.11)
|
||||
actionpack (= 3.2.11)
|
||||
activesupport (= 3.2.11)
|
||||
|
@ -79,17 +112,32 @@ GEM
|
|||
rake (10.0.4)
|
||||
rdoc (3.12.2)
|
||||
json (~> 1.4)
|
||||
ruby2ruby (2.0.4)
|
||||
ruby_parser (~> 3.1)
|
||||
sexp_processor (~> 4.0)
|
||||
ruby_parser (3.1.2)
|
||||
sexp_processor (~> 4.1)
|
||||
sass (3.2.7)
|
||||
sass-rails (3.2.6)
|
||||
railties (~> 3.2.0)
|
||||
sass (>= 3.1.10)
|
||||
tilt (~> 1.3)
|
||||
sexp_processor (4.2.0)
|
||||
slim (1.3.6)
|
||||
temple (~> 0.5.5)
|
||||
tilt (~> 1.3.3)
|
||||
sprockets (2.2.2)
|
||||
hike (~> 1.2)
|
||||
multi_json (~> 1.0)
|
||||
rack (~> 1.0)
|
||||
tilt (~> 1.1, != 1.3.0)
|
||||
sqlite3 (1.3.7)
|
||||
temple (0.5.5)
|
||||
terminal-table (1.4.5)
|
||||
thin (1.5.1)
|
||||
daemons (>= 1.0.9)
|
||||
eventmachine (>= 0.12.6)
|
||||
rack (>= 1.0.0)
|
||||
thor (0.18.0)
|
||||
tilt (1.3.6)
|
||||
treetop (1.4.12)
|
||||
|
@ -104,9 +152,16 @@ PLATFORMS
|
|||
ruby
|
||||
|
||||
DEPENDENCIES
|
||||
better_errors
|
||||
binding_of_caller
|
||||
brakeman
|
||||
coffee-rails (~> 3.2.1)
|
||||
jquery-rails
|
||||
meta_request
|
||||
rack-mini-profiler
|
||||
rails (= 3.2.11)
|
||||
rails-footnotes
|
||||
sass-rails (~> 3.2.3)
|
||||
sqlite3
|
||||
thin
|
||||
uglifier (>= 1.0.3)
|
||||
|
|
Loading…
Reference in a new issue