Non-negotiables
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
| # Install with: | |
| # bash < <(curl -L https://raw.github.com/gist/1780623) | |
| # | |
| # Reference: http://blog.wyeworks.com/2011/11/1/ruby-1-9-3-and-ruby-debug | |
| echo "Installing ruby-debug with ruby-1.9.3-p0 ..." | |
| curl -OL http://rubyforge.org/frs/download.php/75414/linecache19-0.5.13.gem | |
| curl -OL http://rubyforge.org/frs/download.php/75415/ruby-debug-base19-0.11.26.gem |
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
| $(document).ready(function(){ | |
| $('#custom_images_tab a').click(function(){ | |
| if (!(picker = $('#page_image_picker')).data('size-applied')){ | |
| wym_box = $('.page_part:first .wym_box'); | |
| iframe = $('.page_part:first iframe'); | |
| picker.css({ | |
| height: wym_box.height() | |
| , width: wym_box.width() | |
| }).data('size-applied', true).corner('tr 5px').corner('bottom 5px').find('.wym_box').css({ | |
| backgroundColor: 'white' |
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
| var shiftHeld = false; | |
| var initialLoad = true; | |
| $(document).ready(function(){ | |
| init_interface(); | |
| init_sortable_menu(); | |
| init_submit_continue(); | |
| init_modal_dialogs(); | |
| init_tooltips(); | |
| init_ajaxy_pagination(); | |
| }); |
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
| curl $(heroku pgbackups:url --remote production) | pg_restore --verbose --clean --no-acl --no-owner -h localhost -U root -d screening_room_development |
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
| module Extensions | |
| module Spree | |
| module Promotion | |
| extend ActiveSupport::Concern | |
| included do | |
| alias_method_chain :order_activatable?, :no_date_limitation | |
| end | |
| def order_activatable_with_no_date_limitation?(order) |
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
| Query: | |
| curl -X GET "http://localhost:9200/spree_products/spree%2Fproduct/_search?from=0&load=false&page=1&per_page=20&size=20&pretty=true" -d '{"query":{"bool":{"must":[{"query_string":{"query":"Carry","default_operator":"AND"}},{"range":{"available_on":{"lte":"2011-12-08T11:43:53Z"}}}]}},"size":20,"from":0}' | |
| Returns: | |
| { | |
| "took" : 7, | |
| "timed_out" : false, | |
| "_shards" : { | |
| "total" : 5, |
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
| # Rake task | |
| desc 'Generate a list of potential orders with falsely flagged invalid payments' | |
| task list_orders_with_complete_and_invalid_payments: :environment do | |
| Spree::Order.complete.where(legacy: false).each do |order| | |
| if order && order.has_mulitple_payments? && order.has_an_invalid_and_complete_payment? | |
| puts " -> Order #{order.number} has a potentially problematic payment" | |
| end | |
| end | |
| 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
| Spree::Shipment.class_eval do | |
| def send_shipped_email | |
| unless Rails.env.production? | |
| ::Spree::ShipmentMailer.shipped_email(self.id).deliver | |
| end | |
| end | |
| end | |
| Spree::Order.class_eval do | |
| def deliver_order_confirmation_email |
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
| Spree::Order.class_eval do | |
| checkout_flow do | |
| go_to_state :address | |
| go_to_state :delivery | |
| go_to_state :payment, :if => lambda { |order| order.payment_required? } | |
| go_to_state :confirm, :if => lambda { |order| order.confirmation_required? } | |
| go_to_state :complete, :if => lambda { |order| (order.payment_required? && order.has_unprocessed_payments?) || !order.payment_required? } | |
| remove_transition :from => :delivery, :to => :confirm | |
| end |
OlderNewer