repo
string
commit
string
message
string
diff
string
ept/saas-template
5c3bc5052e93725c1e4a0f06870c5fd0bde3fe80
Changed singular session resource to plural to satisfy specs
diff --git a/generators/authenticated/authenticated_generator.rb b/generators/authenticated/authenticated_generator.rb index 9ce813d..f2edfc1 100644 --- a/generators/authenticated/authenticated_generator.rb +++ b/generators/authenticated/authenticated_generator.rb @@ -1,376 +1,376 @@ require File.expand_path(File.dirn...
ept/saas-template
a0a09e1e4b757d734368d5e976d33fec320e3cd4
A few more generator and README fixes
diff --git a/README b/README index ebac07c..748670e 100644 --- a/README +++ b/README @@ -1,174 +1,174 @@ h1. Restful Authentication Generator This widely-used plugin provides a foundation for securely managing user authentication: * Login / logout * Secure password handling * Account activation by validating em...
ept/saas-template
6de385ee9f46a98293811fad467b860c28ab37ca
small fix for adding index on correct templated table/column instead of static users table
diff --git a/generators/authenticated/templates/migration.rb b/generators/authenticated/templates/migration.rb index ab50e00..afeaaaa 100644 --- a/generators/authenticated/templates/migration.rb +++ b/generators/authenticated/templates/migration.rb @@ -1,26 +1,26 @@ class <%= migration_name %> < ActiveRecord::Migratio...
ept/saas-template
036dbec5a257c3dd337ef304f44cb0348ac7b248
Misspelled UsersHelper as usersHelper. Damn generator variables all look alike
diff --git a/generators/authenticated/templates/spec/helpers/users_helper_spec.rb b/generators/authenticated/templates/spec/helpers/users_helper_spec.rb index d9f037e..ebccd93 100644 --- a/generators/authenticated/templates/spec/helpers/users_helper_spec.rb +++ b/generators/authenticated/templates/spec/helpers/users_he...
ept/saas-template
815b11e3ba141d878f5390f4b5135a7d3b6be497
small fix for adding index on correct templated table/column instead of static users table
diff --git a/generators/authenticated/templates/migration.rb b/generators/authenticated/templates/migration.rb index ab50e00..afeaaaa 100644 --- a/generators/authenticated/templates/migration.rb +++ b/generators/authenticated/templates/migration.rb @@ -1,26 +1,26 @@ class <%= migration_name %> < ActiveRecord::Migratio...
ept/saas-template
282e4ad339edbfa1a241d218816cf3ae67363340
Fixed named login/logout routes in README
diff --git a/README b/README index 1375b10..ebac07c 100644 --- a/README +++ b/README @@ -1,174 +1,174 @@ h1. Restful Authentication Generator This widely-used plugin provides a foundation for securely managing user authentication: * Login / logout * Secure password handling * Account activation by validating em...
ept/saas-template
4b291b16f905e38836bc2685647bfe82185398c2
Fixed capitalization in UsersHelper spec
diff --git a/generators/authenticated/templates/spec/helpers/users_helper_spec.rb b/generators/authenticated/templates/spec/helpers/users_helper_spec.rb index d9f037e..ebccd93 100644 --- a/generators/authenticated/templates/spec/helpers/users_helper_spec.rb +++ b/generators/authenticated/templates/spec/helpers/users_he...
ept/saas-template
cbe902da71566eb04396cadf0aac9759dd0ab50e
misspelled UsersHelper as usersHelper ; was returning the wrong thing from login_by_cookie
diff --git a/generators/authenticated/templates/authenticated_system.rb b/generators/authenticated/templates/authenticated_system.rb index 25a1154..d4e4b58 100644 --- a/generators/authenticated/templates/authenticated_system.rb +++ b/generators/authenticated/templates/authenticated_system.rb @@ -1,186 +1,187 @@ module...
ept/saas-template
875781d5b4ee55120753d3a04044d8039486899e
Fixed the 'made some methods public' kludge
diff --git a/CHANGELOG b/CHANGELOG index c3a0b76..5495485 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,75 +1,68 @@ h1. Internal Changes to code As always, this is just a copy-and-pasted version of the CHANGELOG file in the source code tree. h2. Changes for the May, 2008 version of restful-authentication h3. C...
ept/saas-template
5a4e2b66c610d1a1ecba01991f3680a02e781c74
Fixed the 'made some methods public' kludge
diff --git a/generators/authenticated/templates/authenticated_system.rb b/generators/authenticated/templates/authenticated_system.rb index 5e569fe..25a1154 100644 --- a/generators/authenticated/templates/authenticated_system.rb +++ b/generators/authenticated/templates/authenticated_system.rb @@ -1,186 +1,186 @@ module...
ept/saas-template
0670fd8a2af5a4298718adbcb95423dac3be51bc
Decoupling cookie handling: * cookie handling has a better interface, works as it should (we weren't creating a cookie for 'exists but expired') * controller specs changed to match
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0523cb8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,20 @@ +Icon? +.DS_Store +TAGS +REVISION +*.tmproj +.settings +.project +.tasks-cache +.svn +/log/*.log +/tmp/**/* +/config/database.yml +actionmailer_config_DONOTVERSION.rb +*DONOTVERSION* +/vendor...
ept/saas-template
84dd57ff97c5741412f36973b2bfe251e76b7793
Newer Export of diagram
diff --git a/notes/SecurityFramework.graffle b/notes/SecurityFramework.graffle index c1ae6ff..439fd19 100644 Binary files a/notes/SecurityFramework.graffle and b/notes/SecurityFramework.graffle differ diff --git a/notes/SecurityFramework.png b/notes/SecurityFramework.png index 9572a14..a19f718 100644 Binary files a/not...
ept/saas-template
c394d99e296ab03e70f2ae052deec766ab47fa89
Organized notes
diff --git a/CHANGELOG b/CHANGELOG index 0f273e0..89beb97 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,181 +1,193 @@ -Changes since fork from technoweenie's branch - -I've made a few security changes based on best practices recommended in +Following best practices recommended in * "The OWASP Guide to Building Secure...
ept/saas-template
a2732fbb20744780f79c43bd952d1b65835ec8b5
Modularized (most) of the user model
diff --git a/CHANGELOG b/CHANGELOG new file mode 100644 index 0000000..0f273e0 --- /dev/null +++ b/CHANGELOG @@ -0,0 +1,181 @@ + +Changes since fork from technoweenie's branch + +I've made a few security changes based on best practices recommended in +* "The OWASP Guide to Building Secure Web Applications":http://www.o...
kltan/Karmagination
f5ea5eb253f2d327f4e026a8fc2b0fd2f1a5e5cd
fixed a performance issue where DOM manipulation does not need to clone a seed not if the target node is just one
diff --git a/build.version b/build.version index 5fdec21..2e8bf64 100644 --- a/build.version +++ b/build.version @@ -1 +1 @@ -2156 \ No newline at end of file +2166 \ No newline at end of file diff --git a/karma-0.2.js b/karma-0.2.js index f7fee8c..0414f5b 100644 --- a/karma-0.2.js +++ b/karma-0.2.js @@ -1,1164 +1,1168...
kltan/Karmagination
2cf3e00c5a4effc37bbaf4d8aef4f3b12b706576
event delegation finally done right, looking solid now
diff --git a/build.php b/build.php index 854af94..c3ac5b1 100644 --- a/build.php +++ b/build.php @@ -1,113 +1,97 @@ <? header('Content-Type: text/html; charset=utf-8'); require_once('config.php'); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> ...
kltan/Karmagination
2ab154b9dea3f749e2323fb88c9a685ca77e8c27
completed Karmic Flow 0.1, fixed CSS get width, improved FX performance, bumped to 0.2
diff --git a/build.php b/build.php index 5aa5aea..854af94 100644 --- a/build.php +++ b/build.php @@ -1,115 +1,113 @@ <? header('Content-Type: text/html; charset=utf-8'); require_once('config.php'); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> ...
kltan/Karmagination
d1dec49cacba36594b196118e8abefabad609d88
remove string type check for setStyle, optimized string to integer type conversion in fx
diff --git a/build.php b/build.php index 4d9928e..66564b5 100644 --- a/build.php +++ b/build.php @@ -1,90 +1,90 @@ <? header('Content-Type: text/html; charset=utf-8'); require_once('config.php'); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <...
kltan/Karmagination
fa8c46eba89f8334d476038f9a90b7273956d195
using typeof instead of undefined munging, it's faster on most modern browsers
diff --git a/build.version b/build.version index 2065757..4aae4fb 100644 --- a/build.version +++ b/build.version @@ -1 +1 @@ -1065 \ No newline at end of file +1072 \ No newline at end of file diff --git a/config.php b/config.php index f86226e..7ac9c41 100644 --- a/config.php +++ b/config.php @@ -1,36 +1,36 @@ <? // ...
kltan/Karmagination
c6f85f65bfbab382d82663d2323383b27c7076c8
more event normalization, added build number
diff --git a/_notes/dwsync.xml b/_notes/dwsync.xml deleted file mode 100644 index 35856ff..0000000 --- a/_notes/dwsync.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="utf-8" ?> -<dwsync> -<file name="build.php" server="C:/wamp/www/short/" local="128903542005388018" remote="128903542000000000" /> -<file...
kltan/Karmagination
8c922d4583a5e4f8f7ad682db9acbe197e9e6e28
fixed include module, fix manipulate module to return correct elements
diff --git a/_notes/dwsync.xml b/_notes/dwsync.xml new file mode 100644 index 0000000..35856ff --- /dev/null +++ b/_notes/dwsync.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8" ?> +<dwsync> +<file name="build.php" server="C:/wamp/www/short/" local="128903542005388018" remote="128903542000000000" /> +<file nam...
kltan/Karmagination
2d4fb83712aaf76ecaf9dfd1c0ad43fcef9e168f
fixed a lot of the FX module to animate margin/padding/border and temporarily removed get CSS function
diff --git a/Karma.js b/Karma.js index 662f09e..762980b 100644 --- a/Karma.js +++ b/Karma.js @@ -1,2218 +1,2253 @@ /*! - * Karmagination 0.2 - Fast and Simple + * Karmagination 0.3 - Fast and Simple * http://www.karmagination.com * Released under the MIT, BSD, and GPL Licenses * Copyright (c) 2009 Kean L. Tan ...
kltan/Karmagination
7aa12a195070e26c7ec2e600e19059b4c608f30a
solved more innerHTML quirks for creating nodes, using indexof where regex is excessive
diff --git a/Karma.js b/Karma.js index 7c905d0..3487906 100644 --- a/Karma.js +++ b/Karma.js @@ -1,1584 +1,1602 @@ /*! * Karmagination 0.1 * http://www.karmagination.com * JS development simplified * Released under the MIT, BSD, and GPL Licenses * Copyright 2009 Kean L. Tan * Start date: 2009-04-01 - * L...
kltan/Karmagination
8b22580de68c24fec2283412825b12250a3be092
0.1 final build
diff --git a/jquery-1.3.2.js b/jquery-1.3.2.js new file mode 100644 index 0000000..462cde5 --- /dev/null +++ b/jquery-1.3.2.js @@ -0,0 +1,4376 @@ +/*! + * jQuery JavaScript Library v1.3.2 + * http://jquery.com/ + * + * Copyright (c) 2009 John Resig + * Dual licensed under the MIT and GPL licenses. + * http://docs.jquer...
kltan/Karmagination
8ad021592a29323b5ec20c2e377d79ba70a4102e
0.1 final build
diff --git a/build.php b/build.php index d4f53f8..f97281b 100644 --- a/build.php +++ b/build.php @@ -1,17 +1,85 @@ +<? + +/************************************** +* This is a simple builder for $hort * +**************************************/ + +header('Content-Type: text/html; charset=utf-8'); +?> + + <!DOCTYPE htm...
kltan/Karmagination
f4d7262414685f246f62ee993ba565e0b92a7648
adding initial stuff
diff --git a/_notes/dwsync.xml b/_notes/dwsync.xml new file mode 100644 index 0000000..188a128 --- /dev/null +++ b/_notes/dwsync.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8" ?> +<dwsync> +<file name="index.html" server="C:/wamp/www/short/" local="128830905369894380" remote="128830905360000000" /> +<file na...
AnuragMishra/MooTools-EventBus
a7b52f646e456d669e3631b69bac88ae6addf077
Added EventBus class with an example
diff --git a/EventBus.js b/EventBus.js new file mode 100644 index 0000000..e6efe9f --- /dev/null +++ b/EventBus.js @@ -0,0 +1,44 @@ +/** + * A MooTools implementation of an event bus to decouple + * the event sender from the receiver. It is very similar to + * NSNotificationCenter in Cocoa. + * + * MooTools Class.Ext...
vbehar/scripts
1f36b7b53c3f8ec07da42e42bfd2d8f443e356e1
fix utc date
diff --git a/svnlog2jabberd.rb b/svnlog2jabberd.rb index 3cf14b6..816e573 100755 --- a/svnlog2jabberd.rb +++ b/svnlog2jabberd.rb @@ -1,109 +1,110 @@ #!/usr/bin/env ruby ## svnlog2jabberd # daemon script that periodically fetch the log of an SVN repo, # and send it through Jabber to a conference room # it replace...
vbehar/scripts
ac63fb9086d72aa556a16d1780bc508538d953e8
better support for animated colors (when test or build is broken)
diff --git a/hudson_clewarecontrol.rb b/hudson_clewarecontrol.rb index 4efbf33..ce35600 100755 --- a/hudson_clewarecontrol.rb +++ b/hudson_clewarecontrol.rb @@ -1,79 +1,77 @@ #!/usr/bin/env ruby # a little script to manipulate clewarecontrol # with input from a hudson instance HUDSON_URL = "" HUDSON_USER = "" ...
vbehar/scripts
7ef51b003a59a742e3a0e7b4646eb8b3f156b87a
new version of the svn log to jabber script, which is daemonized and sends revisions infos to jabber conferences instead of direct messages
diff --git a/svnlog2jabberd.rb b/svnlog2jabberd.rb new file mode 100755 index 0000000..3cf14b6 --- /dev/null +++ b/svnlog2jabberd.rb @@ -0,0 +1,109 @@ +#!/usr/bin/env ruby + +## svnlog2jabberd +# daemon script that periodically fetch the log of an SVN repo, +# and send it through Jabber to a conference room +# it repla...
vbehar/scripts
4d488f61304262fdb7eca7efbb0614ef84bed09d
add support for jobs currently building (color : *_anime)
diff --git a/hudson_clewarecontrol.rb b/hudson_clewarecontrol.rb index 2926698..4efbf33 100755 --- a/hudson_clewarecontrol.rb +++ b/hudson_clewarecontrol.rb @@ -1,79 +1,79 @@ #!/usr/bin/env ruby # a little script to manipulate clewarecontrol # with input from a hudson instance HUDSON_URL = "" HUDSON_USER = "" ...
vbehar/scripts
2c149f03b1f5aefe56196abd863ffb335a4f9df9
better visibility for red and yellow
diff --git a/hudson_clewarecontrol.rb b/hudson_clewarecontrol.rb index 2b9e004..2926698 100755 --- a/hudson_clewarecontrol.rb +++ b/hudson_clewarecontrol.rb @@ -1,69 +1,79 @@ #!/usr/bin/env ruby # a little script to manipulate clewarecontrol # with input from a hudson instance HUDSON_URL = "" HUDSON_USER = "" ...
vbehar/scripts
52f3bad5b4ae89d34cb301aea9a4a3e8ed445664
add option to use all jobs
diff --git a/hudson_clewarecontrol.rb b/hudson_clewarecontrol.rb index b1dcd72..2b9e004 100755 --- a/hudson_clewarecontrol.rb +++ b/hudson_clewarecontrol.rb @@ -1,59 +1,69 @@ #!/usr/bin/env ruby # a little script to manipulate clewarecontrol # with input from a hudson instance HUDSON_URL = "" HUDSON_USER = "" ...
vbehar/scripts
a21add1710d6e09a8733c6391951b6cb970813d2
adding new script for manipulating clewarecontrol with input from a hudson instance
diff --git a/hudson_clewarecontrol.rb b/hudson_clewarecontrol.rb new file mode 100755 index 0000000..b1dcd72 --- /dev/null +++ b/hudson_clewarecontrol.rb @@ -0,0 +1,59 @@ +#!/usr/bin/env ruby + +# a little script to manipulate clewarecontrol +# with input from a hudson instance + +HUDSON_URL = "" +HUDSON_USER = "" +HUD...
vbehar/scripts
5e50541f08ccaaa7a0cfc1aea7248a419801c348
add new script for http logs stats
diff --git a/http_logs_stats.rb b/http_logs_stats.rb new file mode 100644 index 0000000..7fb8e0e --- /dev/null +++ b/http_logs_stats.rb @@ -0,0 +1,21 @@ +#!/usr/bin/env ruby + +# a little script to do some stats +# on an http logs file (apache style) + +log_file = "all_logs" + + +stats = {} +File.open(log_file).each_li...
vbehar/scripts
9f7b215c7f0f31d05cfc4f2b3da20ad42fbfa1b8
add a script to auto-update a git repo (when a remote repo change)
diff --git a/update_git.sh b/update_git.sh new file mode 100644 index 0000000..861d9af --- /dev/null +++ b/update_git.sh @@ -0,0 +1,15 @@ +#/bin/bash + +# auto-update the local git repo when the remote repo has change +# optionally restert a webserver after the update +# run this script with a crontab, every x minutes ...
vbehar/scripts
dcd348f31e5558747ce50cd15943a524618f15f8
replacing jev_members_stats with a nicer script : club_stats
diff --git a/club_stats.rb b/club_stats.rb new file mode 100755 index 0000000..caef87c --- /dev/null +++ b/club_stats.rb @@ -0,0 +1,69 @@ +#!/usr/bin/env ruby + +# a little script to do some stats on the members +# use a csv file as input + +require 'date' + +class Club + attr_reader :header, :members + + def initia...
vbehar/scripts
f5674dd3ebbe12100e112064def1f8515a69a88e
add new script for stats on jev members
diff --git a/jev_members_stats.rb b/jev_members_stats.rb new file mode 100755 index 0000000..d1096dd --- /dev/null +++ b/jev_members_stats.rb @@ -0,0 +1,38 @@ +#!/usr/bin/env ruby + +# a little script to do some stats on the members +# use a csv file as input + +require 'date' + +header = nil +members = [] + +File.ope...
vbehar/scripts
be65ffc906b4a6babdc504b3ae55b41f575ce0ab
remove new line in crabe when receiving a command
diff --git a/colorize-crabe-logs.pl b/colorize-crabe-logs.pl index a1ccb8a..f8271d0 100755 --- a/colorize-crabe-logs.pl +++ b/colorize-crabe-logs.pl @@ -1,15 +1,15 @@ #!/usr/bin/perl -p # simple perl script for colorizing crabe log output # use with : 'tail xxx.log | colorize-crabe-logs.pl' # extract date and c...
vbehar/scripts
f1c240e283d3f3dacfe7b4562ba93f20a3304f8a
add perl script for colorizing crabe log output
diff --git a/colorize-crabe-logs.pl b/colorize-crabe-logs.pl new file mode 100755 index 0000000..a1ccb8a --- /dev/null +++ b/colorize-crabe-logs.pl @@ -0,0 +1,15 @@ +#!/usr/bin/perl -p + +# simple perl script for colorizing crabe log output +# use with : 'tail xxx.log | colorize-crabe-logs.pl' + +# extract date and con...
vbehar/scripts
c6536acc6553547094c155febe630e10bd71ef19
add comments for colors
diff --git a/colorize-java-logs.pl b/colorize-java-logs.pl index 445f4c7..2a5365b 100755 --- a/colorize-java-logs.pl +++ b/colorize-java-logs.pl @@ -1,16 +1,16 @@ #!/usr/bin/perl -p # simple perl script for colorizing java log output # use with : 'tail xxx.log | colorize-java-logs.pl' -s/SEVERE/\e[1;33m$&\e[0;31...
vbehar/scripts
97f0e01f1f8bdc522ec216ad633e2fae32312961
add CONFIG level
diff --git a/colorize-java-logs.pl b/colorize-java-logs.pl index 2356f2c..445f4c7 100755 --- a/colorize-java-logs.pl +++ b/colorize-java-logs.pl @@ -1,15 +1,16 @@ #!/usr/bin/perl -p # simple perl script for colorizing java log output # use with : 'tail xxx.log | colorize-java-logs.pl' s/SEVERE/\e[1;33m$&\e[0;31...
vbehar/scripts
51aa0e4be8ebbf94165ef625934f6035c6d85159
add SEVERE log level + fix colors for levels >= warning
diff --git a/colorize-java-logs.pl b/colorize-java-logs.pl index 6a4c72a..2356f2c 100755 --- a/colorize-java-logs.pl +++ b/colorize-java-logs.pl @@ -1,14 +1,15 @@ #!/usr/bin/perl -p # simple perl script for colorizing java log output # use with : 'tail xxx.log | colorize-java-logs.pl' -s/GRAVE/\e[1;31m$&\e[0;31m...
vbehar/scripts
50629a1832a93477f7870532f925e118ec90ae4d
fix regexp when day of the month is 1..9 (= only one digit instead of two...)
diff --git a/colorize-java-logs.pl b/colorize-java-logs.pl index 68c66ff..6a4c72a 100755 --- a/colorize-java-logs.pl +++ b/colorize-java-logs.pl @@ -1,14 +1,14 @@ #!/usr/bin/perl -p # simple perl script for colorizing java log output # use with : 'tail xxx.log | colorize-java-logs.pl' s/GRAVE/\e[1;31m$&\e[0;31m...
vbehar/scripts
c1ec58bd7855990139e7d8f6aac2c0057de80d4e
add perl script for colorizing java log output
diff --git a/colorize-java-logs.pl b/colorize-java-logs.pl new file mode 100755 index 0000000..68c66ff --- /dev/null +++ b/colorize-java-logs.pl @@ -0,0 +1,14 @@ +#!/usr/bin/perl -p + +# simple perl script for colorizing java log output +# use with : 'tail xxx.log | colorize-java-logs.pl' + +s/GRAVE/\e[1;31m$&\e[0;31m/...
vbehar/scripts
d2628c87d4cad29e6feb66465b6add8404e7c9af
adding new script : svnlog2jabber retrieve svn logs and send them through jabber
diff --git a/svnlog2jabber.rb b/svnlog2jabber.rb new file mode 100755 index 0000000..d6fced0 --- /dev/null +++ b/svnlog2jabber.rb @@ -0,0 +1,91 @@ +#!/usr/bin/env ruby + +## svnlog2jabber +# get the log of an SVN repo, and send it through Jabber +# this script is meant to be run periodically with cron +# it replaces a ...
vbehar/scripts
9adc5cc352bd2e03323fdf5dc9eb9105ef7ded85
adding README
diff --git a/README b/README new file mode 100644 index 0000000..a7f67a2 --- /dev/null +++ b/README @@ -0,0 +1,3 @@ + +Some usefull scripts... +
jlindsey/NSURLConnection-Example
425f41f4c4b98eb60dd89d078ecc5b2a1d2c05a2
Added README with license
diff --git a/README b/README new file mode 100644 index 0000000..e790d47 --- /dev/null +++ b/README @@ -0,0 +1,20 @@ +Copyright (c) 2009 Joshua Lindsey + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the S...
jlindsey/NSURLConnection-Example
f989f234921cf004f1e32393f9cc313cabb8b533
Some shit
diff --git a/Controller.h b/Controller.h new file mode 100644 index 0000000..7d4048d --- /dev/null +++ b/Controller.h @@ -0,0 +1,40 @@ +// +// Controller.h +// testbedUI +// +// Created by jlindsey on 8/4/09. +// Copyright 2009 __MyCompanyName__. All rights reserved. +// + +#import <Cocoa/Cocoa.h> + + +@interface C...
pcunnane/telesign
af9e6c71c7f0e67143de325f50c775857389f9ae
country code for bahamas
diff --git a/lib/telesign/lib/country.rb b/lib/telesign/lib/country.rb index 6a32d20..10bf0be 100644 --- a/lib/telesign/lib/country.rb +++ b/lib/telesign/lib/country.rb @@ -1,474 +1,475 @@ module Telesign module Country class InvalidCountryName < ArgumentError; end NAMES_TO_ALPHA2 = { "...
kid/eve-tools
027b0416e31c841dd99c5bf6fe2f487e66d8294a
Ignores .sqlite3 files
diff --git a/.gitignore b/.gitignore index 0d20b64..51e6e88 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ *.pyc +default.sqlite3
kid/eve-tools
32f1e7b909b27351a15f26a12d4e38cf9a28b75a
Adds base django project, wsgi and requirements files.
diff --git a/eve-tools.wsgi b/eve-tools.wsgi new file mode 100644 index 0000000..aa15b33 --- /dev/null +++ b/eve-tools.wsgi @@ -0,0 +1,14 @@ +PROJECT_ROOT = None + +import os, sys +from os.path import join, dirname, abspath, exists + +if not PROJECT_ROOT or not exists(PROJECT_ROOT): + PROJECT_ROOT = dirname(abspath(...
kid/eve-tools
c887ba963afe65fe5fa80bb95b3870fdee2e61c8
Ignores .pyc files
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0d20b64 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.pyc
ddlsmurf/qsopera
b13d7fca864b6aacfddb42c14628fed710f5dc52
removed html from description, added extended description
diff --git a/Info.plist b/Info.plist index 9c2d639..d4795ed 100644 --- a/Info.plist +++ b/Info.plist @@ -1,165 +1,167 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>CFBundleDevelopme...
ddlsmurf/qsopera
8a0cd5b54d34b54801a2a381410dab53217445a3
new xcode ignores
diff --git a/.gitignore b/.gitignore index cf9e477..95f1032 100644 --- a/.gitignore +++ b/.gitignore @@ -1,62 +1,83 @@ # xcode noise *.mode1 *.mode1v3 *.mode2v3 *.pbxuser *.perspective *.perspectivev3 *.pyc *~.nib/ build/* *.xcodeproj/xcuserdata/* *.xcodeproj/project.xcworkspace/xcuserdata/* # Textmate -...
ddlsmurf/qsopera
fa4505f3a93dcb684370b6e5aa7a709b039c1f3e
version bump
diff --git a/Info.plist b/Info.plist index 908a99e..9c2d639 100644 --- a/Info.plist +++ b/Info.plist @@ -1,165 +1,165 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>CFBundleDevelopme...
ddlsmurf/qsopera
ab95b1269d6cd98ede90c6c8553aa935d23917c1
Descriptive errors
diff --git a/OperaBookmark.m b/OperaBookmark.m index 65ee60e..2c859ee 100644 --- a/OperaBookmark.m +++ b/OperaBookmark.m @@ -1,370 +1,369 @@ // // OperaBookmark.m // OperaParser // /* (c) Copyright 2009 Eric Doughty-Papassideris. All Rights Reserved. This file is part of QSOpera. QSOpera is free softw...
ddlsmurf/qsopera
64d9361e03e4ac6b6e7ad7b4b1d7aad3bd4bac8a
Version bump
diff --git a/Info.plist b/Info.plist index 89ddcb1..908a99e 100644 --- a/Info.plist +++ b/Info.plist @@ -1,165 +1,165 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>CFBundleDevelopme...
ddlsmurf/qsopera
f4bcfa0df199b57dd98680c20a84eb65645c3a18
Improved reporting of invalid formats in opera file parser
diff --git a/OperaBookmark.m b/OperaBookmark.m index 455431b..65ee60e 100644 --- a/OperaBookmark.m +++ b/OperaBookmark.m @@ -1,361 +1,370 @@ // // OperaBookmark.m // OperaParser // /* (c) Copyright 2009 Eric Doughty-Papassideris. All Rights Reserved. This file is part of QSOpera. QSOpera is free softw...
ddlsmurf/qsopera
912a0cb21c49854b76d27451afeaf6cd45487b8e
Rewrote last change calc code
diff --git a/OperaBookmark.m b/OperaBookmark.m index bdc0577..455431b 100644 --- a/OperaBookmark.m +++ b/OperaBookmark.m @@ -1,365 +1,361 @@ // // OperaBookmark.m // OperaParser // /* (c) Copyright 2009 Eric Doughty-Papassideris. All Rights Reserved. This file is part of QSOpera. QSOpera is free softw...
ddlsmurf/qsopera
fec18907c07fbd29b9f643e69377977a3f5a992d
No longer include xconfigs in bundle (?)
diff --git a/QSOpera.xcodeproj/project.pbxproj b/QSOpera.xcodeproj/project.pbxproj index a95bc66..cf341e2 100644 --- a/QSOpera.xcodeproj/project.pbxproj +++ b/QSOpera.xcodeproj/project.pbxproj @@ -1,371 +1,357 @@ // !$*UTF8*$! { archiveVersion = 1; classes = { }; objectVersion = 46; objects = { /* Begin ...
ddlsmurf/qsopera
b881e1f28cb06d36bfe2ea0edd05d0c3b7408a8b
Removed some warnings
diff --git a/QSOpera.m b/QSOpera.m index 0733d46..d96b732 100644 --- a/QSOpera.m +++ b/QSOpera.m @@ -1,53 +1,54 @@ // // QSOpera.m // QSOpera // /* (c) Copyright 2009 Eric Doughty-Papassideris. All Rights Reserved. This file is part of QSOpera. QSOpera is free software: you can redistribute it and/or ...
ddlsmurf/qsopera
31cf96ed672af873deaa2b872601edb1b026c5f2
Safari reading script fixed
diff --git a/Resources/Scripts/URL - Move from Safari to Opera.scpt b/Resources/Scripts/URL - Move from Safari to Opera.scpt index 053eaf1..473fffa 100644 Binary files a/Resources/Scripts/URL - Move from Safari to Opera.scpt and b/Resources/Scripts/URL - Move from Safari to Opera.scpt differ
ddlsmurf/qsopera
8b4d1f4aa207bd3dce9425f188829c8a98b122d7
Something about xcode project file versions
diff --git a/QSOpera.xcodeproj/project.pbxproj b/QSOpera.xcodeproj/project.pbxproj index 9bf8d0b..a95bc66 100644 --- a/QSOpera.xcodeproj/project.pbxproj +++ b/QSOpera.xcodeproj/project.pbxproj @@ -1,370 +1,371 @@ // !$*UTF8*$! { archiveVersion = 1; classes = { }; - objectVersion = 42; + objectVersion = 46; ob...
ddlsmurf/qsopera
e4f251b928ff72d02e34d52a8d983e2b759236f5
Build configuration now based on those in QS_SOURCE_ROOT
diff --git a/QSOpera.xcodeproj/project.pbxproj b/QSOpera.xcodeproj/project.pbxproj index dfb442a..9bf8d0b 100644 --- a/QSOpera.xcodeproj/project.pbxproj +++ b/QSOpera.xcodeproj/project.pbxproj @@ -1,370 +1,370 @@ // !$*UTF8*$! { archiveVersion = 1; classes = { }; objectVersion = 42; objects = { /* Begin ...
ddlsmurf/qsopera
e7b057b3d7973100aa99eb58f7715e3ee92a80d1
Renamed 'Development' build configuration to 'Debug' (yes, it's required)
diff --git a/QSOpera.xcodeproj/project.pbxproj b/QSOpera.xcodeproj/project.pbxproj index 78da003..dfb442a 100644 --- a/QSOpera.xcodeproj/project.pbxproj +++ b/QSOpera.xcodeproj/project.pbxproj @@ -1,370 +1,370 @@ // !$*UTF8*$! { archiveVersion = 1; classes = { }; objectVersion = 42; objects = { /* Begin ...
ddlsmurf/qsopera
9a3f7bbbecbe611bb8b66655f63545e4ca6e9a44
Using configuration from QS_SOURCE_ROOT
diff --git a/QSOpera.xcodeproj/project.pbxproj b/QSOpera.xcodeproj/project.pbxproj index d99f80a..78da003 100644 --- a/QSOpera.xcodeproj/project.pbxproj +++ b/QSOpera.xcodeproj/project.pbxproj @@ -1,334 +1,370 @@ // !$*UTF8*$! { archiveVersion = 1; classes = { }; objectVersion = 42; objects = { /* Begin ...
ddlsmurf/qsopera
02d93ee15ffb0d112bbae5e47e3c7e72342f5885
Removed QS Frameworks from pch
diff --git a/QSOpera_Prefix.pch b/QSOpera_Prefix.pch index 3ec97fb..6652f7e 100644 --- a/QSOpera_Prefix.pch +++ b/QSOpera_Prefix.pch @@ -1,9 +1,7 @@ // // Prefix header for all source files of the 'QSOpera' target in the 'QSOpera' project // #ifdef __OBJC__ #import <Cocoa/Cocoa.h> -#import <QSFoundation/QSFounda...
ddlsmurf/qsopera
3031d57c9eca45188e3d09172f4e8b45e580fd1d
Removed unused constant
diff --git a/QSOpera_Prefix.pch b/QSOpera_Prefix.pch index 2efb3a3..3ec97fb 100644 --- a/QSOpera_Prefix.pch +++ b/QSOpera_Prefix.pch @@ -1,12 +1,9 @@ // // Prefix header for all source files of the 'QSOpera' target in the 'QSOpera' project // #ifdef __OBJC__ #import <Cocoa/Cocoa.h> #import <QSFoundation/QSFound...
ddlsmurf/qsopera
d61d4d20071a613cc030c3d0c6f7168a7625f8fb
Uses qss- and qssp- protocols for searches now
diff --git a/OperaBookmark.m b/OperaBookmark.m index 975155e..bdc0577 100644 --- a/OperaBookmark.m +++ b/OperaBookmark.m @@ -1,360 +1,365 @@ // // OperaBookmark.m // OperaParser // /* (c) Copyright 2009 Eric Doughty-Papassideris. All Rights Reserved. This file is part of QSOpera. QSOpera is free softw...
ddlsmurf/qsopera
8240c5928bed008ba27f0cc5159b88b2f542eb1c
Fixed search URL generation
diff --git a/OperaBookmark.m b/OperaBookmark.m index 5d60d58..975155e 100644 --- a/OperaBookmark.m +++ b/OperaBookmark.m @@ -1,360 +1,360 @@ // // OperaBookmark.m // OperaParser // /* (c) Copyright 2009 Eric Doughty-Papassideris. All Rights Reserved. This file is part of QSOpera. QSOpera is free softw...
ddlsmurf/qsopera
f604ed1ffa948903963d07ea53ad8dea67ad56f1
F1rst Commit
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ba5e765 --- /dev/null +++ b/.gitignore @@ -0,0 +1,18 @@ +# xcode noise +*.mode1v3 +*.pbxuser +*.perspective +*.perspectivev3 +*.pyc +*~.nib/ +build/* + +# Textmate - if you build your xcode projects with it +*.tm_build_errors + +# old skool +....
yasuhito/shortestpath
c50d3d0de31b3fd204c234dd935c920d28398c4a
ss を環境変数、YAML の両方で指定できるように修正
diff --git a/README b/README index 2d6c84f..b57669f 100644 --- a/README +++ b/README @@ -1,35 +1,37 @@ 最短路ソルバー用 キューイングシステム * 実行の方法 まずはサーバーを実行しておき、次にクライアントを実行します。 # サーバの実行 % rake server ...
yasuhito/shortestpath
6d4f6e69319f3a009f29fa7db2669f1cdd0cdfe3
ログファイルの位置を指定できるように修正
diff --git a/config.yaml b/config.yaml index c2dd74d..c9952f5 100644 --- a/config.yaml +++ b/config.yaml @@ -1,5 +1,6 @@ sp.heap: ~/bin/sp.heap merge_ssout: ~/bin/merge_ssout working_dir: /tmp target: ~/sp/target.png graph: ~/USA-t.m-gr +log_file: /tmp/queued.log diff --git a/queued.rb b/queued.rb index 22c4b2d..c...
yasuhito/shortestpath
a99e3a8d7b3ba9a32303e2153c3ea572db87ddf4
コアを複数使って実行する場合にも対応
diff --git a/Rakefile b/Rakefile index aeca404..fddaf7f 100644 --- a/Rakefile +++ b/Rakefile @@ -1,195 +1,195 @@ # -*- coding: utf-8 -*- require 'rubygems' require 'logger' require 'net/telnet' require 'queued' require 'rake/clean' require 'sp-config' require 'spec' require 'spec/rake/spectask' require 'spe...
yasuhito/shortestpath
1dd955d0724b521500c197c47760cb77635e61bf
Emacs 用のコメントを削除
diff --git a/color.rb b/color.rb index 46c4671..f3d4bdf 100644 --- a/color.rb +++ b/color.rb @@ -1,31 +1,24 @@ class Color PINK = "" GREEN = "" YELLOW = "" SLATE = "" ORANGE = "" BLUE = "" RESET = "" def self.slate string SLATE + string + R...
yasuhito/shortestpath
7b09a85a4eceb1551fe90b86cf2fa80b7a235c8b
一時ファイル .out-p も掃除するように修正
diff --git a/command-builder.rb b/command-builder.rb index 49be7cb..ad7d266 100644 --- a/command-builder.rb +++ b/command-builder.rb @@ -1,9 +1,18 @@ +# -*- coding: utf-8 -*- require 'job' class CommandBuilder + # ジョブ実行の前後に .ss のステージングと一時ファイルのゴミ掃除を追加 ...
yasuhito/shortestpath
4fd5ced3ea01099cb2f5ff5226094ffa89c5e4ec
使い方を少々追加
diff --git a/README b/README index e69de29..2d6c84f 100644 --- a/README +++ b/README @@ -0,0 +1,35 @@ +最短路ソルバー用 キューイングシステム + + +* 実行の方法 + まずはサーバーを実行しておき、次にクライアントを実行します。 + + # サーバの実行 + % rake server +...
yasuhito/shortestpath
8268dd565393af437e73c439fa572611c6387959
引数の名前の省略形をやめた
diff --git a/color.rb b/color.rb index 26cf41f..46c4671 100644 --- a/color.rb +++ b/color.rb @@ -1,31 +1,31 @@ class Color PINK = "" GREEN = "" YELLOW = "" SLATE = "" ORANGE = "" BLUE = "" RESET = "" - def self.slate str - SLATE + str + RESET +...
yasuhito/shortestpath
7d204292ced450f92c9e742c453d204b6165b95b
Job クラスのリファクタリング & コメント付け
diff --git a/job.rb b/job.rb index 3d1d2d5..30453e6 100644 --- a/job.rb +++ b/job.rb @@ -1,107 +1,126 @@ +# -*- coding: utf-8 -*- require 'sp-config' require 'tempfile' class Job attr_reader :ss def initialize graph, source, destination + validate graph, source, destination @source = source ...
yasuhito/shortestpath
65e97b70c0727eaef1d1cec3d2b6bbb73405c8e1
sp.heap とかその他いろんなパスを yaml で設定できるようにした。
diff --git a/Rakefile b/Rakefile index d57c762..aeca404 100644 --- a/Rakefile +++ b/Rakefile @@ -1,185 +1,195 @@ # -*- coding: utf-8 -*- require 'rubygems' require 'logger' require 'net/telnet' require 'queued' require 'rake/clean' +require 'sp-config' require 'spec' require 'spec/rake/spectask' require 'spe...
yasuhito/shortestpath
46a195189af403afb9fae1353f9de0ab90573cbb
結果が返るごとに PNG を更新するように修正
diff --git a/Rakefile b/Rakefile index e60de83..d57c762 100644 --- a/Rakefile +++ b/Rakefile @@ -1,175 +1,185 @@ # -*- coding: utf-8 -*- require 'rubygems' require 'logger' require 'net/telnet' require 'queued' require 'rake/clean' require 'spec' require 'spec/rake/spectask' require 'spec/rake/verify_rcov' ...
yasuhito/shortestpath
b7aa20ad9fc1e6f86176b77827059c1ffad37d29
だいぶバグをつぶした
diff --git a/Rakefile b/Rakefile index 8f1ea98..e60de83 100644 --- a/Rakefile +++ b/Rakefile @@ -1,173 +1,175 @@ +# -*- coding: utf-8 -*- require 'rubygems' require 'logger' require 'net/telnet' require 'queued' require 'rake/clean' require 'spec' require 'spec/rake/spectask' require 'spec/rake/verify_rcov' ...
yasuhito/shortestpath
49e545cd1ae123c7ab9e37446ecb7ef5b8ed0c09
スレッドで Tempfile をほとんど同じ時刻に作ったときに、名前がかぶる問題 を修正したつもり。
diff --git a/Rakefile b/Rakefile index fef795d..8f1ea98 100644 --- a/Rakefile +++ b/Rakefile @@ -1,165 +1,173 @@ require 'rubygems' require 'logger' require 'net/telnet' require 'queued' require 'rake/clean' require 'spec' require 'spec/rake/spectask' require 'spec/rake/verify_rcov' require 'thread_pool' ...
yasuhito/shortestpath
ec70ef9e64b9ba216097078d84090a14d2718e50
cui のリフレッシュ間隔を調整y
diff --git a/Rakefile b/Rakefile index bc65971..fef795d 100644 --- a/Rakefile +++ b/Rakefile @@ -1,149 +1,165 @@ require 'rubygems' +require 'logger' require 'net/telnet' require 'queued' require 'rake/clean' require 'spec' require 'spec/rake/spectask' require 'spec/rake/verify_rcov' require 'thread_pool' ...
yasuhito/shortestpath
7de796ea0c72cb2594a776d03a2fba4863664f67
更新
diff --git a/Rakefile b/Rakefile index 6b6d382..bc65971 100644 --- a/Rakefile +++ b/Rakefile @@ -1,120 +1,149 @@ require 'rubygems' require 'net/telnet' require 'queued' require 'rake/clean' require 'spec' require 'spec/rake/spectask' require 'spec/rake/verify_rcov' require 'thread_pool' task :default =>...
yasuhito/shortestpath
f22ca6cd8cc212fa8291f6b5817bda5ba0db561a
Rakefile のリファクタリング
diff --git a/Rakefile b/Rakefile index 8527005..6b6d382 100644 --- a/Rakefile +++ b/Rakefile @@ -1,109 +1,120 @@ require 'rubygems' require 'net/telnet' require 'queued' require 'rake/clean' require 'spec' require 'spec/rake/spectask' require 'spec/rake/verify_rcov' require 'thread_pool' task :default =>...
yasuhito/shortestpath
0be34594ad53484505ffe41b07cd17648415ffb2
リファクタリング
diff --git a/Rakefile b/Rakefile index 7b60ef3..8527005 100644 --- a/Rakefile +++ b/Rakefile @@ -1,89 +1,109 @@ require 'rubygems' require 'net/telnet' require 'queued' require 'rake/clean' require 'spec' require 'spec/rake/spectask' require 'spec/rake/verify_rcov' require 'thread_pool' task :default => ...
yasuhito/shortestpath
8d9f5b03d2a5300eabc6e7e8457f8ae6458366d7
CUI の表示を改善。
diff --git a/cui.rb b/cui.rb index d24a0c4..09b8908 100644 --- a/cui.rb +++ b/cui.rb @@ -1,77 +1,80 @@ # -*- coding: utf-8 -*- require 'color' class CUI - def initialize - @node_state = Hash.new( [] ) + def initialize nodes + @node_state = {} + nodes.each do | each | + @node_state[ each ] = [] + ...
yasuhito/shortestpath
87bb985b1f7bcfffe928c59e5e5f337f4510cd9b
CUI をリファクタリング
diff --git a/cui.rb b/cui.rb index e247e3a..d24a0c4 100644 --- a/cui.rb +++ b/cui.rb @@ -1,60 +1,77 @@ # -*- coding: utf-8 -*- require 'color' class CUI - @@nodes = [] - @@started = Hash.new( 0 ) - @@finished = Hash.new( 0 ) - @@failed = Hash.new( 0 ) - @@last_updated = Time.now - @@mutex = Mutex.new + de...
yasuhito/shortestpath
ff58aab3ed6e3a8a9834a02c0ae3c0df41124817
動くようにした。
diff --git a/color.rb b/color.rb index a786c54..26cf41f 100644 --- a/color.rb +++ b/color.rb @@ -1,26 +1,31 @@ class Color PINK = "" GREEN = "" YELLOW = "" SLATE = "" ORANGE = "" BLUE = "" RESET = "" def self.slate str SLATE + str + RESET ...
yasuhito/shortestpath
220187b2c50d05c103826583a5734a6032f007fc
テストが通るところまで修正
diff --git a/color.rb b/color.rb index 3c7387b..a786c54 100644 --- a/color.rb +++ b/color.rb @@ -1,41 +1,26 @@ class Color PINK = "" GREEN = "" YELLOW = "" SLATE = "" ORANGE = "" BLUE = "" RESET = "" - def self.pink str - PINK + str + RESET - ...
yasuhito/shortestpath
32088a26d49c85f3a4a5225433f95856365463c0
queued のリファクタリング、Mutex をかける部分を直した。 テストがまだだけど帰宅したいのでとりあえずコミット。
diff --git a/cui.rb b/cui.rb index 547e543..2eeb8cf 100644 --- a/cui.rb +++ b/cui.rb @@ -1,42 +1,49 @@ require 'color' class CUI @@nodes = [] @@started = Hash.new( 0 ) @@finished = Hash.new( 0 ) @@last_updated = Time.now + @@mutex = Mutex.new def self.display - now = Time.now - return if...
yasuhito/shortestpath
3111d5c2927f497542c32eafcda6c232b681486d
テストに失敗している部分があったので修正。カバレッジ部分はマダ。
diff --git a/Rakefile b/Rakefile index 4e4029c..7b60ef3 100644 --- a/Rakefile +++ b/Rakefile @@ -1,75 +1,89 @@ require 'rubygems' require 'net/telnet' require 'queued' require 'rake/clean' require 'spec' require 'spec/rake/spectask' require 'spec/rake/verify_rcov' require 'thread_pool' task :default => :...
yasuhito/shortestpath
3fc246f8f3e0e12aee1932c5531b55e6957e2d0a
dispatcher の余計なメソッドを削除
diff --git a/dispatcher.rb b/dispatcher.rb index e940657..3e9fe6e 100644 --- a/dispatcher.rb +++ b/dispatcher.rb @@ -1,115 +1,109 @@ # -*- coding: utf-8 -*- require 'command-builder' require 'node-list' require 'popen3' require 'pshell' class Dispatcher def initialize node_list, logger @clients = [] ...
yasuhito/shortestpath
61e76542f78a29240ba36247a11a140ecabf2509
とりあえず現状で動く版。spec が間に合ってないので、テストに通らない箇 所あり。
diff --git a/Rakefile b/Rakefile index 79699d5..4e4029c 100644 --- a/Rakefile +++ b/Rakefile @@ -1,43 +1,75 @@ require 'rubygems' +require 'net/telnet' require 'queued' require 'rake/clean' require 'spec' require 'spec/rake/spectask' require 'spec/rake/verify_rcov' +require 'thread_pool' task :default => :...
yasuhito/shortestpath
6eccb8d2b712156b85a337068ed3dfee2c1c718c
Queued を大幅にリファクタリング。動かないかも。
diff --git a/Rakefile b/Rakefile index 0ec5e6e..79699d5 100644 --- a/Rakefile +++ b/Rakefile @@ -1,42 +1,43 @@ require 'rubygems' require 'queued' require 'rake/clean' require 'spec' require 'spec/rake/spectask' require 'spec/rake/verify_rcov' task :default => :verify_rcov task :verify_rcov => :spec RCov...
yasuhito/shortestpath
82b6081ecaf561c67aaf3c21aa0be9a86f1692c0
sp.heap のパスを修正
diff --git a/job.rb b/job.rb index 1aea962..5e0b261 100644 --- a/job.rb +++ b/job.rb @@ -1,109 +1,109 @@ require 'tempfile' class Job def initialize graph, source, destination @source = source @destination = destination @graph = graph validate @ss = make_query_file end def co...
yasuhito/shortestpath
4dcf64823817f593c3ab3f1bb6440098a862e59c
sp.heap とかのパスが決め打ちだったのを修正
diff --git a/job.rb b/job.rb index da32218..1aea962 100644 --- a/job.rb +++ b/job.rb @@ -1,109 +1,109 @@ require 'tempfile' class Job def initialize graph, source, destination @source = source @destination = destination @graph = graph validate @ss = make_query_file end def co...
yasuhito/shortestpath
5e2fada72c34475ba743879c9c44e7f1818d5fbe
ノードを実行時に指定できるように修正
diff --git a/Rakefile b/Rakefile index 2bfb1b3..0ec5e6e 100644 --- a/Rakefile +++ b/Rakefile @@ -1,39 +1,42 @@ require 'rubygems' require 'queued' require 'rake/clean' require 'spec' require 'spec/rake/spectask' require 'spec/rake/verify_rcov' task :default => :verify_rcov task :verify_rcov => :spec RCov...