bundler_args: --without development production --retry=3 --jobs=3
-before_install:
- - sudo apt-get -qq update
- - sudo apt-get install -y nodejs nodejs-legacy npm
-
before_script:
- npm install
- bundle exec rake db:create db:migrate
gem 'binding_of_caller'
gem 'letter_opener'
gem 'bullet'
- gem 'memory_profiler'
end
group :production do
gem 'rails_12factor'
end
-
-group :development, :production do
- gem 'rack-mini-profiler'
-end
nokogiri (>= 1.5.9)
mail (2.6.4)
mime-types (>= 1.16, < 4)
- memory_profiler (0.9.6)
method_source (0.8.2)
mime-types (3.1)
mime-types-data (~> 3.2015)
rack (2.0.1)
rack-attack (5.0.1)
rack
- rack-mini-profiler (0.10.1)
- rack (>= 1.2.0)
rack-test (0.6.3)
rack (>= 1.0)
rails (5.0.0.1)
jbuilder (~> 2.0)
jquery-rails
letter_opener
- memory_profiler
nokogiri
oj
onebox
puma
rabl
rack-attack
- rack-mini-profiler
rails (= 5.0.0.1)
rails_12factor
rails_autolink
},
render: function() {
- console.log(this.props.status.toJS());
+ var content = { __html: this.props.status.get('content') };
return (
- <div style={{ height: '100px' }}>
- {this.props.status.getIn(['account', 'username'])}: {this.props.status.get('content')}
+ <div style={{ padding: '5px' }}>
+ <div><strong>{this.props.status.getIn(['account', 'username'])}</strong></div>
+ <div dangerouslySetInnerHTML={content} />
</div>
);
}
force_ssl if: "Rails.env.production? && ENV['LOCAL_HTTPS'] == 'true'"
- # Profiling
- before_action do
- if (current_user && current_user.admin?) || Rails.env.development?
- Rack::MiniProfiler.authorize_request
- end
- end
-
helper_method :current_account
protected
+++ /dev/null
-unless Rails.env == 'test'
- Rails.application.middleware.swap(Rack::Deflater, Rack::MiniProfiler)
- Rails.application.middleware.swap(Rack::MiniProfiler, Rack::Deflater)
-end