Name | Price | Integrations | Limits | Language |
---|---|---|---|---|
bugsnag.com | $29 per month | slack, jira | 5 devs | javascript, php |
speedcurve.com | $0.01 per check | slack, jira | - | javascript |
honeybadger.io | $44 per month | slack, jira | 5 projects | javascript |
atatus.com | $29 per month | slack, jira | 200000 view/month | javascript |
muscula.com | $14 per month | - | 1 000 000 errors/month | javascript |
exceptional.io | - | - | - | - |
airbrake.io | $39 per month | slack, jira | 5 projects, 10 users | javascript, php |
errorception.com | $29 per month | slack, jira |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Capybara.register_driver :poltergeist do |app| | |
Capybara::Poltergeist::Driver.new( | |
app, | |
phantomjs_logger: File.open("#{Rails.root}/log/test_phantomjs.log", 'a'), | |
timeout: 30, | |
window_size: [1536, 1024], | |
phantomjs_options: [ | |
'--load-images=no', | |
'--ignore-ssl-errors=yes', | |
'--disk-cache=true' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Code goes here | |
var colors = [ | |
"#DC143C", "#fac3ce", "#FF8C00", "#ffe8cc", "#483D8B", "#bbb5df", "#696969", "#cfcfcf", "#B22222", "#f0b0b0", "#FFA500", "#ffedcc", "#4B0082", "#cf78ff", "#FF0000", "#ffd5d5", "#778899", "#eceef0", "#3CB371", "#cdeedc", "#800080", "#ff6dff", "#FF6347", "#ffedea", "#008080", "#4dffff", "#8B4513", "#edac7d", "#4169E1", "#dbe3f9", "#A52A2A", "#ebb0b0", "#B8860B", "#f9dc96", "#00008B", "#8b8bff", "#006400", "#64ff64", "#8B0000", "#ff8b8b", "#DAA520", "#f5e3b8", "#483D8B", "#bbb5df", "#32CD32", "#d6f5d6", "#c1392b", "#f2cac6", "#8f44ad", "#e5d0ed", "#e65a05", "#fee3d2", "#286100", "#a2ff61", "#AA0000", "#ff9191", "#000039", "#8080ff", "#663001", "#fda04f", "#DD515E", "#f6d1d4", "#9c9ede", "#cedb9c", "#e7cb94", "#e7969c", "#de9ed6", "#c6dbef", "#fdd0a2", "#c7e9c0", | |
"#dadaeb","#6b6ecf", "#b5cf6b", "#e7ba52", "#d6616b", "#ce6dbd", "#9ecae1", "#fdae6b", | |
"#a1d99b", "#bcbddc", "#5254a3", "#8ca252", "#bd9e39", "#ad494a", "#a55194", "#6baed6", | |
"#fd8d3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ... | |
gem 'capybara' | |
gem 'selenium-webdriver' | |
gem 'poltergeist' | |
gem 'phantomjs', require: 'phantomjs/poltergeist' | |
gem 'capybara-screenshot' | |
# ... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
describe ClassName do | |
describe 'Database' do | |
end | |
describe 'Relations' do | |
end | |
describe 'Validations' do | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[6] pry(main)> def test_inner | |
[6] pry(main)* puts 'i0' | |
[6] pry(main)* raise ActiveRecord::Rollback | |
[6] pry(main)* puts 'i1' | |
[6] pry(main)* return false | |
[6] pry(main)* puts 'i2' | |
[6] pry(main)* end | |
=> :test_inner | |
[7] pry(main)> | |
[8] pry(main)> def test_outer |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
includes | |
relations | |
constants | |
delegate | |
nested_attributes | |
before callbacks | |
after_callbacks | |
validations | |
custom validations | |
scopes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Installing capybara-webkit 1.6.0 with native extensions | |
Gem::Ext::BuildError: ERROR: Failed to build gem native extension. | |
/Users/rilian/.rvm/rubies/ruby-2.2.2/bin/ruby -r ./siteconf20150718-1268-kztrdg.rb extconf.rb | |
cd src/ && /usr/local/bin/qmake /Users/rilian/.rvm/gems/ruby-2.2.2@shine-api/gems/capybara-webkit-1.6.0/src/webkit_server.pro LIBS\ +=\ -L/usr/local/opt/libyaml/lib\ -L/usr/local/opt/readline/lib\ -L/usr/local/opt/libksba/lib\ -L/usr/local/opt/openssl/lib -o Makefile.webkit_server | |
cd src/ && /Applications/Xcode.app/Contents/Developer/usr/bin/make -f Makefile.webkit_server | |
clang++ -pipe -stdlib=libc++ -mmacosx-version-min=10.7 -O2 -arch x86_64 -Wall -W -DQT_NO_DEBUG -DQT_WEBKIT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/local/Cellar/qt/4.8.7/mkspecs/unsupported/macx-clang-libc++ -I. -I/usr/local/Cellar/qt/4.8.7/lib/QtCore.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.7/lib/QtCore.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.7/lib/QtNetwork.framewo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ... | |
gem 'redis' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Привет {member_name} | |
Мы начали выступление в Пентатлоне достаточно хорошо, но могли бы еще лучше! | |
В марафоне - POGS - мы держимся на 16 месте и возможно выйдем на 15 через несколько дней http://www.seti-germany.de/boinc_pentathlon/statistiken/challenge.php?challengeid=1 | |
Сегодня стартовал новый этап - Rosetta@home, который продлится до 13 мая, тут наша команда традиционно сильна, и поэтому мы вышли в первый день сразу на 11 место http://www.seti-germany.de/boinc_pentathlon/statistiken/challenge.php?challengeid=3 | |
В общем зачете это позволило нам набрать очков и подняться до 13 места! http://www.seti-germany.de/boinc_pentathlon/statistiken/pentathlon.php |