ORM agnostic truly Object-Oriented view helper for Rails 4, 5, and 6
Rails plugin to view source map
Your partner for finding a good commit message.
tchak/barber 45
handlebars precompilation toolkit
Cookie based feature flags implementation for Rails.
Swipebox | A touchable lightbox for the Rails asset pipeline
TIGNode - Twitter IRC Gateway powered by Node
Document-oriented, Text-based and Read-only data storage
ikepon/perfect-google-analytics 0
パーフェクト Google Analytics のリポジトリ
startedcodex-team/editor.js
started time in a day
startedr7kamura/rack-capture
started time in 3 days
startedabicky/activerecord-debug_errors
started time in 4 days
startedrubyconfig/config
started time in 4 days
startedgrosser/rspec-instafail
started time in 7 days
startedskroutz/rspecq
started time in 7 days
pull request commentrubocop-hq/rubocop-rspec
Ah, sorry. I missed that issue.
comment created time in 8 days
PR opened rubocop-hq/rubocop-rspec
Rubocop 1.0 was released. https://github.com/rubocop-hq/rubocop/releases/tag/v1.0.0
pr created time in 8 days
push eventtricknotes/rubocop-rspec
commit sha 5b2809f0df36985953c25105e3199344dc16db22
Allow rubocop 1.0 Rubocop 1.0 was released. https://github.com/rubocop-hq/rubocop/releases/tag/v1.0.0
push time in 8 days
pull request commentnodenv/node-build
@minimum2scp Could you review & merge this PR ? It seems working fine for me.
comment created time in 11 days
startedkinkinkon1009/memo
started time in 14 days
push eventtricknotes/starseeker
commit sha dac79955c75b33e3aece0e42de3c401e21189de5
$ bundle update
push time in 16 days
Rails upgrade's best friend
fork in 18 days
startedr7kamura/dotfiles
started time in 21 days
startedhmsk/hmsk.me
started time in 22 days
startedfjordllc/rubocop-fjord
started time in 23 days
startedheartcombo/mail_form
started time in a month
startednguyenquangminh0711/ruby_jard
started time in a month
startedmakicamel/action_tracer
started time in a month
startedexif-js/exif-js
started time in a month
startedcrashtech/torque-postgresql
started time in a month
startedShopify/packwerk
started time in a month
startedperfectline/validates_url
started time in a month
startedsimplecov-ruby/simplecov
started time in a month
fork tricknotes/devise
Flexible authentication solution for Rails with Warden.
http://blog.plataformatec.com.br/tag/devise/
fork in a month
startedclowne-rb/clowne
started time in 2 months
startedmtsmfm/contextful_rewriter
started time in 2 months
startedleastbad/optimism
started time in 2 months
startedbenprew/pony
started time in 2 months
startedst0012/power_trace
started time in 2 months
startedenriclluelles/route_translator
started time in 2 months
startedko1/nakayoshi_fork
started time in 2 months
startedlockstep/rails_new
started time in 2 months
startedankane/mailkick
started time in 2 months
startedShopify/semian
started time in 2 months
startedvuejs/vue-devtools
started time in 2 months
startedtricknotes/FirebaseAuthenticationGoogleAppsScript
started time in 2 months
startedmarcandre/backports
started time in 2 months
startedpat/combustion
started time in 2 months
startedpanko-serializer/panko_serializer
started time in 2 months
push eventtricknotes/raven-ruby
commit sha 5990bf9b0ab3c0088446a3b6ab75b43ae972964b
Fix broken links in doc These links show "Page Not Found". It seems https://docs.getsentry.com/hosted/clients was moved to https://docs.sentry.io/platforms.
push time in 2 months
PR opened getsentry/raven-ruby
These links shows "Page Not Found". It seems https://docs.getsentry.com/hosted/clients was moved to https://docs.sentry.io/platforms.
pr created time in 2 months
Ruby SDK for Sentry
fork in 2 months
startedgeolonia/japanese-addresses
started time in 2 months
startedtroessner/reek
started time in 2 months
startedrootstrap/active-storage-base64
started time in 2 months
startedrmm5t/strip_attributes
started time in 2 months
startedmanuelmeurer/railsbump
started time in 2 months
startedrootstrap/blog
started time in 2 months
startedbdmac/strong_password
started time in 2 months
startedmikecao/umami
started time in 2 months
startedClarkSource/ember-lottie
started time in 2 months
startedplankanban/planka
started time in 2 months
startedsportngin/okcomputer
started time in 3 months
pull request commenttricknotes/ember-es6_template
Bugfix - caching of coffee script modules with identical content
Thanks for your contribution, @jonathan-wheeler I released 0.7.0 as a new version 🚀
If there are some problems, please open another issue / PR .
comment created time in 3 months
created tagtricknotes/ember-es6_template
The tilt template for Ember specified ES6.
created time in 3 months
push eventtricknotes/ember-es6_template
commit sha 77e355e746f7c8b16894c73022dcbf7a065ea57c
Bump version to 0.7.0
push time in 3 months
push eventtricknotes/ember-es6_template
commit sha 47acffb88def53a120dd8ca97ca81e2a7678ab37
Bugfix - caching of coffee script modules with identical content Files with identical content but different names were being cached under the same key and therefore only the 1st file had the correct export. As this output was returned (same export) for all subsequence files with the same content. This is pronounced in things like Adaptors where content can frequently be identical eg. adapters/model-one.module.coffee export default ApplicationAdapter.extend coalesceFindRequests: true adapters/model-two.module.coffee export default ApplicationAdapter.extend coalesceFindRequests: true require('adapters/model-one') would work as expected but require('adapters/model-two') would result in runtime error Could not find module 'adapters/model-two' As no export gets defined for 'adapters/model-two' due to the skipped transform step Simplest fix Seems to be, just include the filepath in the cache key.
commit sha 88166089dda133f1512da53834f7d1062ed2017d
Merge pull request #15 from jonathan-wheeler/master Bugfix - caching of coffee script modules with identical content
push time in 3 months
PR merged tricknotes/ember-es6_template
Files with identical content but different names were being cached under the same key and therefore only the 1st file had the correct export. As this output was returned (same export) for all subsequence files with the same content.
This is pronounced in Ember with things like Adaptors where content can frequently be identical but nameing convention is important for resolver resolution eg.
adapters/model-one.module.coffee
export default ApplicationAdapter.extend
coalesceFindRequests: true
adapters/model-two.module.coffee
export default ApplicationAdapter.extend
coalesceFindRequests: true
require('adapters/model-one')
would work as expected but
require('adapters/model-two')
would result in runtime error Could not find module 'adapters/model-two'
As no export gets defined for 'adapters/model-two' due to the skipped transform step
Simplest fix Seems to be, just include the filepath in the cache key.
pr closed time in 3 months
pull request commenttricknotes/ember-es6_template
Bugfix - caching of coffee script modules with identical content
Sorry for my late. My holidays were a bit long. I just fixed CI. Let's try this PR working fine on master.
comment created time in 3 months
PR merged tricknotes/ember-es6_template
It is faster than Travis CI.
pr closed time in 3 months
push eventtricknotes/ember-es6_template
commit sha 41fdbfcd1c2d42c61b9b254d814b29b108dc17e1
Introduce GitHub Actions
commit sha 1ae2f5c490e83b30ae789c6dc4c61470783b58ba
Remove .travis.yml Now, we've migrated to GitHub Actions.
commit sha 88eee7ac631d952685224c978ab38d593e3aa795
Update Ruby versions
commit sha ee02aa5c96047f51fb44d8c674f9882dfe779400
Update sprockets version Now, 4.0 was released: - https://rubygems.org/gems/sprockets/versions/4.0.0
commit sha 21771d383a6950455defb86a919f09637e4463b8
Drop legacy Ruby versions
commit sha 0bc7969f38f61913b7b52b8be50da5fcb6b0d51c
Merge pull request #17 from tricknotes/github-actions Introduce GitHub Actions
push time in 3 months
push eventtricknotes/ember-es6_template
commit sha 21771d383a6950455defb86a919f09637e4463b8
Drop legacy Ruby versions
push time in 3 months
push eventtricknotes/ember-es6_template
commit sha af42090c40cb51966aa32ad0d3f012f205ca103f
- UTF-8
push time in 3 months
push eventtricknotes/ember-es6_template
commit sha cafd2b2141862a8295a641f80fe3918e5fe3e906
Drop legacy Ruby versions
commit sha 6ea506a574260097d4b5c143e92cb0954e731f05
debug
push time in 3 months
push eventtricknotes/ember-es6_template
commit sha a0eab1bea0aec04d9af57ea0cf1478f5fda817e1
debug
push time in 3 months
push eventtricknotes/ember-es6_template
commit sha b2d46baace464bf4f5ee5ec94642576cd0e3ba5e
debug
push time in 3 months
push eventtricknotes/ember-es6_template
commit sha 522973837482f3a5a587a44980e3705bc7e8b715
LANG: C.UTF-8
push time in 3 months
push eventtricknotes/ember-es6_template
commit sha 41fdbfcd1c2d42c61b9b254d814b29b108dc17e1
Introduce GitHub Actions
commit sha 1ae2f5c490e83b30ae789c6dc4c61470783b58ba
Remove .travis.yml Now, we've migrated to GitHub Actions.
commit sha 88eee7ac631d952685224c978ab38d593e3aa795
Update Ruby versions
commit sha ee02aa5c96047f51fb44d8c674f9882dfe779400
Update sprockets version Now, 4.0 was released: - https://rubygems.org/gems/sprockets/versions/4.0.0
commit sha 978073f863e52deb5a5b41bb5f38c4748a4c3090
debug
push time in 3 months
push eventtricknotes/ember-es6_template
commit sha 68f8f5f6dcb3f27e767079554bf5e6165c79a1e7
Introduce GitHub Actions
commit sha ac464afc1621d00ab1900ca3d80fcf2f83b92941
Remove .travis.yml Now, we've migrated to GitHub Actions.
commit sha 986e79310bb110ae96f94d28117a5e6c628a5f6c
Update Ruby versions
commit sha dbc6009b4ba7af93756cfca2abd92783db90198a
Update sprockets version Now, 4.0 was released: - https://rubygems.org/gems/sprockets/versions/4.0.0
push time in 3 months
PR opened tricknotes/ember-es6_template
pr created time in 3 months
delete branch tricknotes/ember-es6_template
delete branch : update-dependencies
delete time in 3 months
push eventtricknotes/ember-es6_template
commit sha 996f6c5f0fedb0623d4f4b8879d1733286b6ca59
Allow newer version of bundler and rake
commit sha 06057c46244a2a2c15f2ac82d9a8596a5479fd69
Merge pull request #16 from tricknotes/update-dependencies Allow newer version of bundler and rake
push time in 3 months
PR merged tricknotes/ember-es6_template
This PR will fix failing builds on Travis CI.
pr closed time in 3 months
PR opened tricknotes/ember-es6_template
pr created time in 3 months
create barnchtricknotes/ember-es6_template
created branch time in 3 months
startedholidays/holidays
started time in 3 months
pull request commenttricknotes/ember-es6_template
Bugfix - caching of coffee script modules with identical content
Thanks for your contribution 🎉 This PR seems good.
However, CI failed due to environment problem. I'll fix CI this weekend. Please wait a moment.
comment created time in 3 months
pull request commentgoogle/clasp
Run tests recursively and fix failing tests
Hi, @PopGoesTheWza How do you think about this PR? Are you busy?
comment created time in 3 months
startedeuvl/vue-js-modal
started time in 3 months
startedember-lifeline/ember-lifeline
started time in 3 months
PR opened kufu/yay
s/Bubdler/Bundler/
pr created time in 3 months
startedijlee2/ember-container-query
started time in 3 months