require 'rails_helper'
describe "Foo", type: :model do
it "ex3" do
puts "--ex3--"
puts "rep: #{@rep.inspect}"
puts "Report count: #{Report.count}"
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
| /* Set up Git Configuration */ | |
| git config --global user.email "you@yourdomain.com" | |
| git config --global user.name "Your Name" | |
| git config --global core.editor "vi" | |
| git config --global color.ui 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
| module StringToArrayConverter | |
| NUMERIC_ARRAY_REGEX = /^\[([\d,\s\.\-\+]+)\]$/ | |
| def to_numeric_array | |
| m = NUMERIC_ARRAY_REGEX.match(self.strip) | |
| m[1].split(",").map{|e| e.include?(".") ? e.to_f : e.to_i} | |
| end | |
| def is_a_numeric_array? | |
| !NUMERIC_ARRAY_REGEX.match(self.strip).nil? |
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 -> | |
| $("a.sortable").on "click", (e) -> | |
| e.preventDefault() | |
| id = $(this).data('id') | |
| dir = $(this).data('direction') # "up" or "down" | |
| sel = $("#item_#{id}") # selector of current | |
| $.ajax | |
| url: "/activities/#{id}/move" |
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 'net/http' | |
| def download_net_http(uris, thread_count) | |
| queue = Queue.new | |
| uris.map { |uri| queue << uri } | |
| threads = thread_count.times.map do | |
| Thread.new do | |
| while !queue.empty? && uri = queue.pop |
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
| it: | |
| devise: | |
| failure: | |
| invited: "Hai un invito in sospeso, accettalo per completare la creazione del tuo account." | |
| invitations: | |
| send_instructions: "Un'email di invito è stata inoltrata a %{email}." | |
| invitation_token_invalid: "Il token di invito fornito non è valido!" | |
| updated: "La tua password è stata impostata correttamente. Ora sei connesso." | |
| updated_not_active: "La tua password è stata impostata correttamente." | |
| no_invitations_remaining: "Non sono più disponibili inviti." |
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
| class Fixnum | |
| def autoref? | |
| a = to_s.rjust(10, "0").split("").map(&:to_i) # a = [2,3,1,1,3,4,5,5,1,9] | |
| h = Hash[(0..9).map{|e| [e, 0]}] | |
| a.each{|e| h[e]+=1} | |
| a.each_with_index do |n, i| | |
| return false if n!=h[i] | |
| end | |
| true | |
| 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
| require 'rubygems/package' | |
| def tar_gz_squeeze(dirname, filename: nil) | |
| filename = filename || dirname | |
| File.open("#{filename}.tar.gz", "wb") do |file| | |
| Zlib::GzipWriter.wrap(file) do |gz| | |
| Gem::Package::TarWriter.new(gz) do |tar| | |
| Dir.glob("#{dirname}/*.json").each do |f| | |
| puts "adding #{File.basename(f)}..." |
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
| # Italian translation for Devise 4.2 | |
| # Date: 2016-08-01 | |
| # Author: epistrephein, iwan | |
| # Note: Thanks to xpepper (https://gist.github.com/xpepper/8052632) | |
| # Additional translations at https://github.com/plataformatec/devise/wiki/I18n | |
| it: | |
| devise: | |
| confirmations: | |
| confirmed: "Il tuo account è stato correttamente confermato." |