-
The new rake task assets:clean removes precompiled assets. [fxn]
-
Application and plugin generation run bundle install unless
--skip-gemfileor--skip-bundle. [fxn] -
Fixed database tasks for jdbc* adapters #jruby [Rashmi Yadav]
-
Template generation for jdbcpostgresql #jruby [Vishnu Atrai]
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
| """ | |
| Get django-sekizai, django-compessor (and django-cms) playing nicely together | |
| re: https://github.com/ojii/django-sekizai/issues/4 | |
| using: https://github.com/jezdez/django_compressor.git | |
| and: https://github.com/ojii/django-sekizai.git@0.5 | |
| """ | |
| from compressor.templatetags.compress import CompressorNode | |
| from django.template.base import * | |
| def compress(data, name): |
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
| # -*- coding: utf-8 -*- | |
| """ | |
| codegen | |
| ~~~~~~~ | |
| Extension to ast that allow ast -> python code generation. | |
| :copyright: Copyright 2008 by Armin Ronacher. | |
| :license: BSD. | |
| """ |
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
| require 'sinatra/base' | |
| require 'memcached' | |
| module Sinatra | |
| module Memcacher | |
| module Helpers | |
| def cache(key, &block) | |
| return block.call unless options.memcacher_enabled | |
| begin |
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
| // Original code from http://www.blog.highub.com/mobile-2/a-fix-for-iphone-viewport-scale-bug/ | |
| var metas = document.getElementsByTagName('meta'); | |
| var i; | |
| if (navigator.userAgent.match(/iPhone/i)) { | |
| for (i=0; i<metas.length; i++) { | |
| if (metas[i].name == "viewport") { | |
| metas[i].content = "width=device-width, minimum-scale=1.0, maximum-scale=1.0"; | |
| } | |
| } |
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
| import yaml | |
| import yaml.constructor | |
| try: | |
| # included in standard lib from Python 2.7 | |
| from collections import OrderedDict | |
| except ImportError: | |
| # try importing the backported drop-in replacement | |
| # it's available on PyPI | |
| from ordereddict import OrderedDict |
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
| #!/bin/bash | |
| if [ "$1" = "-h" -o "$1" = "--help" -o -z "$1" ]; then cat <<EOF | |
| appify v3.0.1 for Mac OS X - http://mths.be/appify | |
| Creates the simplest possible Mac app from a shell script. | |
| Appify takes a shell script as its first argument: | |
| `basename "$0"` my-script.sh |
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
| # .irbrc to log goodies like SQL/Mongo queries to $stdout if in Rails 3 console | |
| if defined?(Rails) && Rails.respond_to?(:logger) | |
| require 'logger' | |
| Rails.logger = Logger.new($stdout) | |
| if defined?(Mongoid) | |
| Mongoid.logger = Rails.logger | |
| 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
| namespace :db do | |
| desc 'Open a MongoDB console with connection parameters for the current Rails.env' | |
| task :console => :environment do | |
| conn = Mongoid.master.connection | |
| args = [] | |
| args << "--username=#{conn.username}" if conn.username rescue nil | |
| args << "--password=#{conn.password}" if conn.password rescue nil | |
| args << "--host=#{conn.host}" | |
| args << "--port=#{conn.port.to_s}" | |
| args << Mongoid.master.name |
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
| import socket | |
| if __name__ == "__main__": | |
| sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
| sock.connect(("localhost", 9000)) | |
| data = "some data" | |
| sock.sendall(data) | |
| result = sock.recv(1024) | |
| print result | |
| sock.close() |