redpomo 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +17 -0
- data/.rspec +1 -0
- data/Gemfile +8 -0
- data/LICENSE +22 -0
- data/README.md +29 -0
- data/Rakefile +2 -0
- data/bin/redpomo +5 -0
- data/lib/redpomo/cli.rb +72 -0
- data/lib/redpomo/config.rb +50 -0
- data/lib/redpomo/entries_printer.rb +33 -0
- data/lib/redpomo/entry.rb +49 -0
- data/lib/redpomo/file_cache.rb +40 -0
- data/lib/redpomo/fuzzy_converter.rb +68 -0
- data/lib/redpomo/issue.rb +24 -0
- data/lib/redpomo/null_cache.rb +9 -0
- data/lib/redpomo/numeric_ext.rb +29 -0
- data/lib/redpomo/puller.rb +35 -0
- data/lib/redpomo/pusher.rb +59 -0
- data/lib/redpomo/task.rb +88 -0
- data/lib/redpomo/task_list.rb +50 -0
- data/lib/redpomo/tracker.rb +108 -0
- data/lib/redpomo/version.rb +3 -0
- data/lib/redpomo.rb +15 -0
- data/redpomo.gemspec +31 -0
- data/spec/file_cache_spec.rb +17 -0
- data/spec/fixtures/cassettes/cli_close.yml +51 -0
- data/spec/fixtures/cassettes/cli_pull.yml +1222 -0
- data/spec/fixtures/cassettes/cli_push.yml +109 -0
- data/spec/fixtures/cassettes/close_issue.yml +50 -0
- data/spec/fixtures/cassettes/issues.yml +449 -0
- data/spec/fixtures/close_results.txt +2 -0
- data/spec/fixtures/printer_output.txt +16 -0
- data/spec/fixtures/pull_results.txt +20 -0
- data/spec/fixtures/timelog.csv +6 -0
- data/spec/lib/redpomo/cli_spec.rb +101 -0
- data/spec/lib/redpomo/fuzzy_converter_spec.rb +65 -0
- data/spec/lib/redpomo/task_spec.rb +39 -0
- data/spec/lib/redpomo/tracker_spec.rb +38 -0
- data/spec/spec_helper.rb +23 -0
- data/spec/support/capture.rb +13 -0
- metadata +235 -0
@@ -0,0 +1,109 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: https://project.cantierecreativo.net/time_entries.json?key=CANTIERE_TOKEN
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ! '{"time_entry":{"project_id":"giunti-web","spent_on":"2012-05-02T08:10:08+00:00","hours":0.4166666666666667,"comments":"Layout
|
9
|
+
homepage e contatti"}}'
|
10
|
+
headers:
|
11
|
+
Accept:
|
12
|
+
- application/json
|
13
|
+
Accept-Encoding:
|
14
|
+
- gzip, deflate
|
15
|
+
Content-Type:
|
16
|
+
- application/json
|
17
|
+
Content-Length:
|
18
|
+
- '148'
|
19
|
+
User-Agent:
|
20
|
+
- Ruby
|
21
|
+
response:
|
22
|
+
status:
|
23
|
+
code: 201
|
24
|
+
message: Created
|
25
|
+
headers:
|
26
|
+
Date:
|
27
|
+
- Sat, 05 May 2012 14:11:52 GMT
|
28
|
+
Server:
|
29
|
+
- Apache/2.2.9 (Debian) DAV/2 PHP/5.2.6-1+lenny10 with Suhosin-Patch mod_python/3.3.1
|
30
|
+
Python/2.5.2 mod_ssl/2.2.9 OpenSSL/0.9.8g Phusion_Passenger/3.0.0
|
31
|
+
X-Powered-By:
|
32
|
+
- Phusion Passenger (mod_rails/mod_rack) 3.0.0
|
33
|
+
X-Runtime:
|
34
|
+
- '75'
|
35
|
+
Cache-Control:
|
36
|
+
- no-cache
|
37
|
+
Set-Cookie:
|
38
|
+
- _redmine_session=BAh7BjoPc2Vzc2lvbl9pZCIlNmUxNzY3NGJmMmZiZThhYmNkNjY4ZTM0MzIyMDY0ZjQ%3D--7b100ed7107ac6dc44145c2c17b57f1575f0520c;
|
39
|
+
path=/; HttpOnly
|
40
|
+
- autologin=; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT
|
41
|
+
Location:
|
42
|
+
- https://project.cantierecreativo.net/time_entries/378
|
43
|
+
Content-Length:
|
44
|
+
- '333'
|
45
|
+
Status:
|
46
|
+
- '201'
|
47
|
+
Content-Type:
|
48
|
+
- application/json; charset=utf-8
|
49
|
+
body:
|
50
|
+
encoding: US-ASCII
|
51
|
+
string: ! '{"time_entry":{"hours":0.416666666666667,"activity":{"name":"da valutare","id":15},"updated_on":"2012/05/05
|
52
|
+
16:11:52 +0200","comments":"Layout homepage e contatti","spent_on":"2012/05/02","user":{"name":"Stefano
|
53
|
+
Verna","id":18},"created_on":"2012/05/05 16:11:52 +0200","project":{"name":"Sito
|
54
|
+
Giunti Educational ","id":56},"id":378}}'
|
55
|
+
http_version:
|
56
|
+
recorded_at: Sat, 05 May 2012 14:11:52 GMT
|
57
|
+
- request:
|
58
|
+
method: post
|
59
|
+
uri: http://code.welaika.com/time_entries.json?key=WELAIKA_TOKEN
|
60
|
+
body:
|
61
|
+
encoding: UTF-8
|
62
|
+
string: ! '{"time_entry":{"issue_id":3293,"spent_on":"2012-05-04T15:04:57+00:00","hours":0.4166666666666667,"comments":"Ricette"}}'
|
63
|
+
headers:
|
64
|
+
Accept:
|
65
|
+
- application/json
|
66
|
+
Accept-Encoding:
|
67
|
+
- gzip, deflate
|
68
|
+
Content-Type:
|
69
|
+
- application/json
|
70
|
+
Content-Length:
|
71
|
+
- '119'
|
72
|
+
User-Agent:
|
73
|
+
- Ruby
|
74
|
+
response:
|
75
|
+
status:
|
76
|
+
code: 201
|
77
|
+
message: Created
|
78
|
+
headers:
|
79
|
+
Date:
|
80
|
+
- Sat, 05 May 2012 14:11:52 GMT
|
81
|
+
Server:
|
82
|
+
- Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_ssl/2.2.9
|
83
|
+
OpenSSL/0.9.8g Phusion_Passenger/3.0.0
|
84
|
+
X-Powered-By:
|
85
|
+
- Phusion Passenger (mod_rails/mod_rack) 3.0.0
|
86
|
+
X-Runtime:
|
87
|
+
- '56'
|
88
|
+
Cache-Control:
|
89
|
+
- no-cache
|
90
|
+
Set-Cookie:
|
91
|
+
- _redmine_session=BAh7BjoPc2Vzc2lvbl9pZCIlMGVlNTVkNWZiN2UyZTI4ZDNjZTljMjkyYmJmNWI5YzE%3D--4d8e5b85461c3b062a6f8b46da9601b9b8719173;
|
92
|
+
path=/; HttpOnly
|
93
|
+
Location:
|
94
|
+
- http://code.welaika.com/time_entries/3943
|
95
|
+
Content-Length:
|
96
|
+
- '320'
|
97
|
+
Status:
|
98
|
+
- '201'
|
99
|
+
Content-Type:
|
100
|
+
- application/json; charset=utf-8
|
101
|
+
body:
|
102
|
+
encoding: US-ASCII
|
103
|
+
string: ! '{"time_entry":{"spent_on":"2012/05/04","updated_on":"2012/05/05 16:11:53
|
104
|
+
+0200","activity":{"name":"Development","id":9},"user":{"name":"Stefano Verna","id":4},"created_on":"2012/05/05
|
105
|
+
16:11:53 +0200","hours":0.416666666666667,"comments":"Ricette","issue":{"id":3293},"id":3943,"project":{"name":"Olasagasti
|
106
|
+
","id":52}}}'
|
107
|
+
http_version:
|
108
|
+
recorded_at: Sat, 05 May 2012 14:11:53 GMT
|
109
|
+
recorded_with: VCR 2.0.1
|
@@ -0,0 +1,50 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: put
|
5
|
+
uri: http://code.welaika.com/issues/3290.json?key=WELAIKA_TOKEN
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ! '{"issue":{"status_id":5,"notes":"foobar"}}'
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- application/json
|
12
|
+
Accept-Encoding:
|
13
|
+
- gzip, deflate
|
14
|
+
Content-Type:
|
15
|
+
- application/json
|
16
|
+
Content-Length:
|
17
|
+
- '42'
|
18
|
+
User-Agent:
|
19
|
+
- Ruby
|
20
|
+
response:
|
21
|
+
status:
|
22
|
+
code: 200
|
23
|
+
message: OK
|
24
|
+
headers:
|
25
|
+
Date:
|
26
|
+
- Sat, 05 May 2012 12:30:14 GMT
|
27
|
+
Server:
|
28
|
+
- Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_ssl/2.2.9
|
29
|
+
OpenSSL/0.9.8g Phusion_Passenger/3.0.0
|
30
|
+
X-Powered-By:
|
31
|
+
- Phusion Passenger (mod_rails/mod_rack) 3.0.0
|
32
|
+
X-Runtime:
|
33
|
+
- '396'
|
34
|
+
Cache-Control:
|
35
|
+
- no-cache
|
36
|
+
Set-Cookie:
|
37
|
+
- _redmine_session=BAh7BzoPc2Vzc2lvbl9pZCIlMjFjM2E3NWM3YTkzYzg5OTI5NTdmNWQzMzZiNmQ5NzYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhhc2h7BjoLbm90aWNlIhlNb2RpZmljYSBlZmZldHR1YXRhLgY6CkB1c2VkewY7B0Y%3D--70b4a63bf9001e4fd949e12c69bb218eea2de03c;
|
38
|
+
path=/; HttpOnly
|
39
|
+
Content-Length:
|
40
|
+
- '1'
|
41
|
+
Status:
|
42
|
+
- '200'
|
43
|
+
Content-Type:
|
44
|
+
- application/json; charset=utf-8
|
45
|
+
body:
|
46
|
+
encoding: US-ASCII
|
47
|
+
string: ! ' '
|
48
|
+
http_version:
|
49
|
+
recorded_at: Sat, 05 May 2012 12:30:15 GMT
|
50
|
+
recorded_with: VCR 2.0.1
|
@@ -0,0 +1,449 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://code.welaika.com/users/current.json?key=WELAIKA_TOKEN
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- application/json
|
12
|
+
Accept-Encoding:
|
13
|
+
- gzip, deflate
|
14
|
+
Content-Type:
|
15
|
+
- application/json
|
16
|
+
User-Agent:
|
17
|
+
- Ruby
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 200
|
21
|
+
message: OK
|
22
|
+
headers:
|
23
|
+
Date:
|
24
|
+
- Sat, 05 May 2012 12:42:05 GMT
|
25
|
+
Server:
|
26
|
+
- Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_ssl/2.2.9
|
27
|
+
OpenSSL/0.9.8g Phusion_Passenger/3.0.0
|
28
|
+
X-Powered-By:
|
29
|
+
- Phusion Passenger (mod_rails/mod_rack) 3.0.0
|
30
|
+
Etag:
|
31
|
+
- ! '"500d2715604701bafcb8473e4ebac37e"'
|
32
|
+
X-Runtime:
|
33
|
+
- '52'
|
34
|
+
Cache-Control:
|
35
|
+
- private, max-age=0, must-revalidate
|
36
|
+
Content-Length:
|
37
|
+
- '196'
|
38
|
+
Status:
|
39
|
+
- '200'
|
40
|
+
Content-Type:
|
41
|
+
- application/json; charset=utf-8
|
42
|
+
body:
|
43
|
+
encoding: US-ASCII
|
44
|
+
string: ! '{"user":{"mail":"stefano.verna@welaika.com","last_login_on":"2012/05/03
|
45
|
+
11:45:10 +0200","lastname":"Verna","login":"steffoz","created_on":"2010/02/11
|
46
|
+
09:34:28 +0100","firstname":"Stefano","id":4}}'
|
47
|
+
http_version:
|
48
|
+
recorded_at: Sat, 05 May 2012 12:42:05 GMT
|
49
|
+
- request:
|
50
|
+
method: get
|
51
|
+
uri: http://code.welaika.com/issues.json?assigned_to_id=4&key=WELAIKA_TOKEN&status_id=open
|
52
|
+
body:
|
53
|
+
encoding: US-ASCII
|
54
|
+
string: ''
|
55
|
+
headers:
|
56
|
+
Accept:
|
57
|
+
- application/json
|
58
|
+
Accept-Encoding:
|
59
|
+
- gzip, deflate
|
60
|
+
Content-Type:
|
61
|
+
- application/json
|
62
|
+
User-Agent:
|
63
|
+
- Ruby
|
64
|
+
response:
|
65
|
+
status:
|
66
|
+
code: 200
|
67
|
+
message: OK
|
68
|
+
headers:
|
69
|
+
Date:
|
70
|
+
- Sat, 05 May 2012 12:42:05 GMT
|
71
|
+
Server:
|
72
|
+
- Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_ssl/2.2.9
|
73
|
+
OpenSSL/0.9.8g Phusion_Passenger/3.0.0
|
74
|
+
X-Powered-By:
|
75
|
+
- Phusion Passenger (mod_rails/mod_rack) 3.0.0
|
76
|
+
Etag:
|
77
|
+
- ! '"4e0411f3e23464c32428942d0089976e"'
|
78
|
+
X-Runtime:
|
79
|
+
- '52'
|
80
|
+
Cache-Control:
|
81
|
+
- private, max-age=0, must-revalidate
|
82
|
+
Set-Cookie:
|
83
|
+
- _redmine_session=BAh7CDoPc2Vzc2lvbl9pZCIlN2YwMGE3OTMyNDRiNWVlNjlkYWRmMjliM2YyNjJkMjA6CnF1ZXJ5ewk6DWdyb3VwX2J5MDoPcHJvamVjdF9pZDA6EWNvbHVtbl9uYW1lczA6DGZpbHRlcnN7ByITYXNzaWduZWRfdG9faWR7BzoLdmFsdWVzWwYiBjQ6DW9wZXJhdG9yIgY9Ig5zdGF0dXNfaWR7BzsLWwYiCHBlbjsMIgZvIhZpc3N1ZXNfaW5kZXhfc29ydCIMaWQ6ZGVzYw%3D%3D--2d196af3a6fd5ff1c69c21c58e26d1828d313eb2;
|
84
|
+
path=/; HttpOnly
|
85
|
+
Content-Length:
|
86
|
+
- '3476'
|
87
|
+
Status:
|
88
|
+
- '200'
|
89
|
+
Content-Type:
|
90
|
+
- application/json; charset=utf-8
|
91
|
+
body:
|
92
|
+
encoding: US-ASCII
|
93
|
+
string: ! '{"limit":25,"issues":[{"status":{"name":"New","id":1},"updated_on":"2012/05/03
|
94
|
+
09:06:07 +0200","assigned_to":{"name":"Stefano Verna","id":4},"done_ratio":0,"description":"-
|
95
|
+
per tutte le app, tutti i mercati, solo iOS, proviamo a prendere il valore
|
96
|
+
dei \"new users\" e metterlo a newUsers/4\r\n- per tutte le app, tutti i mercati,
|
97
|
+
solo Android, proviamo a prendere il valore dei \"new users\" e metterlo a
|
98
|
+
newUsers*10\r\n","tracker":{"name":"Feature","id":2},"start_date":"2012/05/03","created_on":"2012/05/03
|
99
|
+
09:04:06 +0200","subject":"New Users iOS","author":{"name":"Paolo Romagnoli","id":63},"id":3316,"priority":{"name":"Urgent","id":6},"project":{"name":"Dashboard
|
100
|
+
FIAT","id":82}},{"status":{"name":"New","id":1},"updated_on":"2012/04/27 18:15:57
|
101
|
+
+0200","assigned_to":{"name":"Stefano Verna","id":4},"done_ratio":0,"description":"","tracker":{"name":"Feature","id":2},"start_date":"2012/04/27","created_on":"2012/04/27
|
102
|
+
18:15:57 +0200","subject":"Orlando Locator","author":{"name":"Stefano Verna","id":4},"id":3296,"priority":{"name":"Normal","id":4},"project":{"name":"Olasagasti
|
103
|
+
","id":52}},{"status":{"name":"New","id":1},"updated_on":"2012/04/27 18:15:49
|
104
|
+
+0200","assigned_to":{"name":"Stefano Verna","id":4},"done_ratio":0,"description":"","tracker":{"name":"Feature","id":2},"start_date":"2012/04/27","created_on":"2012/04/27
|
105
|
+
18:15:49 +0200","subject":"Il Paniere","author":{"name":"Stefano Verna","id":4},"id":3295,"priority":{"name":"Normal","id":4},"project":{"name":"Olasagasti
|
106
|
+
","id":52}},{"status":{"name":"New","id":1},"updated_on":"2012/04/27 18:15:38
|
107
|
+
+0200","assigned_to":{"name":"Stefano Verna","id":4},"done_ratio":0,"description":"","tracker":{"name":"Feature","id":2},"start_date":"2012/04/27","created_on":"2012/04/27
|
108
|
+
18:15:38 +0200","subject":"Scheda Prodotto","author":{"name":"Stefano Verna","id":4},"id":3294,"priority":{"name":"Normal","id":4},"project":{"name":"Olasagasti
|
109
|
+
","id":52}},{"status":{"name":"New","id":1},"updated_on":"2012/04/27 18:15:23
|
110
|
+
+0200","assigned_to":{"name":"Stefano Verna","id":4},"done_ratio":0,"description":"","tracker":{"name":"Feature","id":2},"start_date":"2012/04/27","created_on":"2012/04/27
|
111
|
+
18:15:23 +0200","subject":"Ricette","author":{"name":"Stefano Verna","id":4},"id":3293,"priority":{"name":"Normal","id":4},"project":{"name":"Olasagasti
|
112
|
+
","id":52}},{"status":{"name":"New","id":1},"updated_on":"2012/04/27 14:36:28
|
113
|
+
+0200","assigned_to":{"name":"Stefano Verna","id":4},"done_ratio":0,"description":"","tracker":{"name":"Bug","id":1},"start_date":"2012/04/27","created_on":"2012/04/27
|
114
|
+
14:36:28 +0200","subject":"Some users have mentioned that the intranet wiki
|
115
|
+
does not support ''table'' markup. Can that be updated to work?","author":{"name":"Stefano
|
116
|
+
Verna","id":4},"id":3286,"priority":{"name":"Normal","id":4},"project":{"name":"Orchid","id":101}},{"status":{"name":"New","id":1},"updated_on":"2012/04/27
|
117
|
+
14:36:51 +0200","assigned_to":{"name":"Stefano Verna","id":4},"done_ratio":0,"description":"Ok.
|
118
|
+
Also, there is an issue with the blog emails - could you strip out the html
|
119
|
+
(particularly \u003Ca\u003E tags) in the blog emails so that the text appears
|
120
|
+
clean? I attach an example email.\r\n\r\nhttp://o7.no/IfiSnP","tracker":{"name":"Bug","id":1},"start_date":"2012/04/25","created_on":"2012/04/25
|
121
|
+
13:02:50 +0200","subject":"Issue with the blog emails","author":{"name":"Stefano
|
122
|
+
Verna","id":4},"id":3269,"priority":{"name":"Normal","id":4},"project":{"name":"Orchid","id":101}}],"total_count":13,"offset":0}'
|
123
|
+
http_version:
|
124
|
+
recorded_at: Sat, 05 May 2012 12:42:05 GMT
|
125
|
+
- request:
|
126
|
+
method: get
|
127
|
+
uri: http://code.welaika.com/projects/82.json?key=WELAIKA_TOKEN
|
128
|
+
body:
|
129
|
+
encoding: US-ASCII
|
130
|
+
string: ''
|
131
|
+
headers:
|
132
|
+
Accept:
|
133
|
+
- application/json
|
134
|
+
Accept-Encoding:
|
135
|
+
- gzip, deflate
|
136
|
+
Content-Type:
|
137
|
+
- application/json
|
138
|
+
User-Agent:
|
139
|
+
- Ruby
|
140
|
+
response:
|
141
|
+
status:
|
142
|
+
code: 200
|
143
|
+
message: OK
|
144
|
+
headers:
|
145
|
+
Date:
|
146
|
+
- Sat, 05 May 2012 12:42:05 GMT
|
147
|
+
Server:
|
148
|
+
- Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_ssl/2.2.9
|
149
|
+
OpenSSL/0.9.8g Phusion_Passenger/3.0.0
|
150
|
+
X-Powered-By:
|
151
|
+
- Phusion Passenger (mod_rails/mod_rack) 3.0.0
|
152
|
+
Etag:
|
153
|
+
- ! '"b17ba1116d4aaaecb964417078e703b4"'
|
154
|
+
X-Runtime:
|
155
|
+
- '208'
|
156
|
+
Cache-Control:
|
157
|
+
- private, max-age=0, must-revalidate
|
158
|
+
Content-Length:
|
159
|
+
- '288'
|
160
|
+
Status:
|
161
|
+
- '200'
|
162
|
+
Content-Type:
|
163
|
+
- application/json; charset=utf-8
|
164
|
+
body:
|
165
|
+
encoding: US-ASCII
|
166
|
+
string: ! '{"project":{"parent":{"name":"Seac02","id":62},"updated_on":"2012/02/17
|
167
|
+
18:05:04 +0100","custom_fields":[{"value":"0","name":"Send Diff Emails","id":1}],"description":"","created_on":"2012/01/23
|
168
|
+
09:05:05 +0100","identifier":"dashboard-fiat","name":"Dashboard FIAT","homepage":"","id":82}}'
|
169
|
+
http_version:
|
170
|
+
recorded_at: Sat, 05 May 2012 12:42:06 GMT
|
171
|
+
- request:
|
172
|
+
method: get
|
173
|
+
uri: http://code.welaika.com/projects/52.json?key=WELAIKA_TOKEN
|
174
|
+
body:
|
175
|
+
encoding: US-ASCII
|
176
|
+
string: ''
|
177
|
+
headers:
|
178
|
+
Accept:
|
179
|
+
- application/json
|
180
|
+
Accept-Encoding:
|
181
|
+
- gzip, deflate
|
182
|
+
Content-Type:
|
183
|
+
- application/json
|
184
|
+
User-Agent:
|
185
|
+
- Ruby
|
186
|
+
response:
|
187
|
+
status:
|
188
|
+
code: 200
|
189
|
+
message: OK
|
190
|
+
headers:
|
191
|
+
Date:
|
192
|
+
- Sat, 05 May 2012 12:42:06 GMT
|
193
|
+
Server:
|
194
|
+
- Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_ssl/2.2.9
|
195
|
+
OpenSSL/0.9.8g Phusion_Passenger/3.0.0
|
196
|
+
X-Powered-By:
|
197
|
+
- Phusion Passenger (mod_rails/mod_rack) 3.0.0
|
198
|
+
Etag:
|
199
|
+
- ! '"6e1b9b5ff1a1f8d0298b3d1e0fa4a4af"'
|
200
|
+
X-Runtime:
|
201
|
+
- '332'
|
202
|
+
Cache-Control:
|
203
|
+
- private, max-age=0, must-revalidate
|
204
|
+
Content-Length:
|
205
|
+
- '305'
|
206
|
+
Status:
|
207
|
+
- '200'
|
208
|
+
Content-Type:
|
209
|
+
- application/json; charset=utf-8
|
210
|
+
body:
|
211
|
+
encoding: US-ASCII
|
212
|
+
string: ! '{"project":{"parent":{"name":"Sites dev","id":32},"updated_on":"2011/09/20
|
213
|
+
10:54:27 +0200","custom_fields":[{"value":"0","name":"Send Diff Emails","id":1}],"description":"Il
|
214
|
+
sito di Olasagasti","created_on":"2011/09/20 10:54:27 +0200","identifier":"olasagasti","name":"Olasagasti
|
215
|
+
","homepage":"","id":52}}'
|
216
|
+
http_version:
|
217
|
+
recorded_at: Sat, 05 May 2012 12:42:06 GMT
|
218
|
+
- request:
|
219
|
+
method: get
|
220
|
+
uri: http://code.welaika.com/projects/52.json?key=WELAIKA_TOKEN
|
221
|
+
body:
|
222
|
+
encoding: US-ASCII
|
223
|
+
string: ''
|
224
|
+
headers:
|
225
|
+
Accept:
|
226
|
+
- application/json
|
227
|
+
Accept-Encoding:
|
228
|
+
- gzip, deflate
|
229
|
+
Content-Type:
|
230
|
+
- application/json
|
231
|
+
User-Agent:
|
232
|
+
- Ruby
|
233
|
+
response:
|
234
|
+
status:
|
235
|
+
code: 200
|
236
|
+
message: OK
|
237
|
+
headers:
|
238
|
+
Date:
|
239
|
+
- Sat, 05 May 2012 12:42:06 GMT
|
240
|
+
Server:
|
241
|
+
- Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_ssl/2.2.9
|
242
|
+
OpenSSL/0.9.8g Phusion_Passenger/3.0.0
|
243
|
+
X-Powered-By:
|
244
|
+
- Phusion Passenger (mod_rails/mod_rack) 3.0.0
|
245
|
+
Etag:
|
246
|
+
- ! '"6e1b9b5ff1a1f8d0298b3d1e0fa4a4af"'
|
247
|
+
X-Runtime:
|
248
|
+
- '24'
|
249
|
+
Cache-Control:
|
250
|
+
- private, max-age=0, must-revalidate
|
251
|
+
Content-Length:
|
252
|
+
- '305'
|
253
|
+
Status:
|
254
|
+
- '200'
|
255
|
+
Content-Type:
|
256
|
+
- application/json; charset=utf-8
|
257
|
+
body:
|
258
|
+
encoding: US-ASCII
|
259
|
+
string: ! '{"project":{"parent":{"name":"Sites dev","id":32},"updated_on":"2011/09/20
|
260
|
+
10:54:27 +0200","custom_fields":[{"value":"0","name":"Send Diff Emails","id":1}],"description":"Il
|
261
|
+
sito di Olasagasti","created_on":"2011/09/20 10:54:27 +0200","identifier":"olasagasti","name":"Olasagasti
|
262
|
+
","homepage":"","id":52}}'
|
263
|
+
http_version:
|
264
|
+
recorded_at: Sat, 05 May 2012 12:42:06 GMT
|
265
|
+
- request:
|
266
|
+
method: get
|
267
|
+
uri: http://code.welaika.com/projects/52.json?key=WELAIKA_TOKEN
|
268
|
+
body:
|
269
|
+
encoding: US-ASCII
|
270
|
+
string: ''
|
271
|
+
headers:
|
272
|
+
Accept:
|
273
|
+
- application/json
|
274
|
+
Accept-Encoding:
|
275
|
+
- gzip, deflate
|
276
|
+
Content-Type:
|
277
|
+
- application/json
|
278
|
+
User-Agent:
|
279
|
+
- Ruby
|
280
|
+
response:
|
281
|
+
status:
|
282
|
+
code: 200
|
283
|
+
message: OK
|
284
|
+
headers:
|
285
|
+
Date:
|
286
|
+
- Sat, 05 May 2012 12:42:06 GMT
|
287
|
+
Server:
|
288
|
+
- Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_ssl/2.2.9
|
289
|
+
OpenSSL/0.9.8g Phusion_Passenger/3.0.0
|
290
|
+
X-Powered-By:
|
291
|
+
- Phusion Passenger (mod_rails/mod_rack) 3.0.0
|
292
|
+
Etag:
|
293
|
+
- ! '"6e1b9b5ff1a1f8d0298b3d1e0fa4a4af"'
|
294
|
+
X-Runtime:
|
295
|
+
- '24'
|
296
|
+
Cache-Control:
|
297
|
+
- private, max-age=0, must-revalidate
|
298
|
+
Content-Length:
|
299
|
+
- '305'
|
300
|
+
Status:
|
301
|
+
- '200'
|
302
|
+
Content-Type:
|
303
|
+
- application/json; charset=utf-8
|
304
|
+
body:
|
305
|
+
encoding: US-ASCII
|
306
|
+
string: ! '{"project":{"parent":{"name":"Sites dev","id":32},"updated_on":"2011/09/20
|
307
|
+
10:54:27 +0200","custom_fields":[{"value":"0","name":"Send Diff Emails","id":1}],"description":"Il
|
308
|
+
sito di Olasagasti","created_on":"2011/09/20 10:54:27 +0200","identifier":"olasagasti","name":"Olasagasti
|
309
|
+
","homepage":"","id":52}}'
|
310
|
+
http_version:
|
311
|
+
recorded_at: Sat, 05 May 2012 12:42:06 GMT
|
312
|
+
- request:
|
313
|
+
method: get
|
314
|
+
uri: http://code.welaika.com/projects/52.json?key=WELAIKA_TOKEN
|
315
|
+
body:
|
316
|
+
encoding: US-ASCII
|
317
|
+
string: ''
|
318
|
+
headers:
|
319
|
+
Accept:
|
320
|
+
- application/json
|
321
|
+
Accept-Encoding:
|
322
|
+
- gzip, deflate
|
323
|
+
Content-Type:
|
324
|
+
- application/json
|
325
|
+
User-Agent:
|
326
|
+
- Ruby
|
327
|
+
response:
|
328
|
+
status:
|
329
|
+
code: 200
|
330
|
+
message: OK
|
331
|
+
headers:
|
332
|
+
Date:
|
333
|
+
- Sat, 05 May 2012 12:42:06 GMT
|
334
|
+
Server:
|
335
|
+
- Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_ssl/2.2.9
|
336
|
+
OpenSSL/0.9.8g Phusion_Passenger/3.0.0
|
337
|
+
X-Powered-By:
|
338
|
+
- Phusion Passenger (mod_rails/mod_rack) 3.0.0
|
339
|
+
Etag:
|
340
|
+
- ! '"6e1b9b5ff1a1f8d0298b3d1e0fa4a4af"'
|
341
|
+
X-Runtime:
|
342
|
+
- '24'
|
343
|
+
Cache-Control:
|
344
|
+
- private, max-age=0, must-revalidate
|
345
|
+
Content-Length:
|
346
|
+
- '305'
|
347
|
+
Status:
|
348
|
+
- '200'
|
349
|
+
Content-Type:
|
350
|
+
- application/json; charset=utf-8
|
351
|
+
body:
|
352
|
+
encoding: US-ASCII
|
353
|
+
string: ! '{"project":{"parent":{"name":"Sites dev","id":32},"updated_on":"2011/09/20
|
354
|
+
10:54:27 +0200","custom_fields":[{"value":"0","name":"Send Diff Emails","id":1}],"description":"Il
|
355
|
+
sito di Olasagasti","created_on":"2011/09/20 10:54:27 +0200","identifier":"olasagasti","name":"Olasagasti
|
356
|
+
","homepage":"","id":52}}'
|
357
|
+
http_version:
|
358
|
+
recorded_at: Sat, 05 May 2012 12:42:06 GMT
|
359
|
+
- request:
|
360
|
+
method: get
|
361
|
+
uri: http://code.welaika.com/projects/101.json?key=WELAIKA_TOKEN
|
362
|
+
body:
|
363
|
+
encoding: US-ASCII
|
364
|
+
string: ''
|
365
|
+
headers:
|
366
|
+
Accept:
|
367
|
+
- application/json
|
368
|
+
Accept-Encoding:
|
369
|
+
- gzip, deflate
|
370
|
+
Content-Type:
|
371
|
+
- application/json
|
372
|
+
User-Agent:
|
373
|
+
- Ruby
|
374
|
+
response:
|
375
|
+
status:
|
376
|
+
code: 200
|
377
|
+
message: OK
|
378
|
+
headers:
|
379
|
+
Date:
|
380
|
+
- Sat, 05 May 2012 12:42:06 GMT
|
381
|
+
Server:
|
382
|
+
- Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_ssl/2.2.9
|
383
|
+
OpenSSL/0.9.8g Phusion_Passenger/3.0.0
|
384
|
+
X-Powered-By:
|
385
|
+
- Phusion Passenger (mod_rails/mod_rack) 3.0.0
|
386
|
+
Etag:
|
387
|
+
- ! '"d6285a3cb224ea4aeab8d914d70f4ffc"'
|
388
|
+
X-Runtime:
|
389
|
+
- '28'
|
390
|
+
Cache-Control:
|
391
|
+
- private, max-age=0, must-revalidate
|
392
|
+
Content-Length:
|
393
|
+
- '238'
|
394
|
+
Status:
|
395
|
+
- '200'
|
396
|
+
Content-Type:
|
397
|
+
- application/json; charset=utf-8
|
398
|
+
body:
|
399
|
+
encoding: US-ASCII
|
400
|
+
string: ! '{"project":{"updated_on":"2012/04/25 12:59:43 +0200","custom_fields":[{"value":"0","name":"Send
|
401
|
+
Diff Emails","id":1}],"description":"","created_on":"2012/04/25 12:59:43 +0200","identifier":"orchid","name":"Orchid","homepage":"","id":101}}'
|
402
|
+
http_version:
|
403
|
+
recorded_at: Sat, 05 May 2012 12:42:06 GMT
|
404
|
+
- request:
|
405
|
+
method: get
|
406
|
+
uri: http://code.welaika.com/projects/101.json?key=WELAIKA_TOKEN
|
407
|
+
body:
|
408
|
+
encoding: US-ASCII
|
409
|
+
string: ''
|
410
|
+
headers:
|
411
|
+
Accept:
|
412
|
+
- application/json
|
413
|
+
Accept-Encoding:
|
414
|
+
- gzip, deflate
|
415
|
+
Content-Type:
|
416
|
+
- application/json
|
417
|
+
User-Agent:
|
418
|
+
- Ruby
|
419
|
+
response:
|
420
|
+
status:
|
421
|
+
code: 200
|
422
|
+
message: OK
|
423
|
+
headers:
|
424
|
+
Date:
|
425
|
+
- Sat, 05 May 2012 12:42:06 GMT
|
426
|
+
Server:
|
427
|
+
- Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_ssl/2.2.9
|
428
|
+
OpenSSL/0.9.8g Phusion_Passenger/3.0.0
|
429
|
+
X-Powered-By:
|
430
|
+
- Phusion Passenger (mod_rails/mod_rack) 3.0.0
|
431
|
+
Etag:
|
432
|
+
- ! '"d6285a3cb224ea4aeab8d914d70f4ffc"'
|
433
|
+
X-Runtime:
|
434
|
+
- '184'
|
435
|
+
Cache-Control:
|
436
|
+
- private, max-age=0, must-revalidate
|
437
|
+
Content-Length:
|
438
|
+
- '238'
|
439
|
+
Status:
|
440
|
+
- '200'
|
441
|
+
Content-Type:
|
442
|
+
- application/json; charset=utf-8
|
443
|
+
body:
|
444
|
+
encoding: US-ASCII
|
445
|
+
string: ! '{"project":{"updated_on":"2012/04/25 12:59:43 +0200","custom_fields":[{"value":"0","name":"Send
|
446
|
+
Diff Emails","id":1}],"description":"","created_on":"2012/04/25 12:59:43 +0200","identifier":"orchid","name":"Orchid","homepage":"","id":101}}'
|
447
|
+
http_version:
|
448
|
+
recorded_at: Sat, 05 May 2012 12:42:07 GMT
|
449
|
+
recorded_with: VCR 2.0.1
|
@@ -0,0 +1,16 @@
|
|
1
|
+
+----------+------------+---------+----------------------------+----------+-------+-------+
|
2
|
+
| Wednesday 05/02/12 - 25 mins |
|
3
|
+
+----------+------------+---------+----------------------------+----------+-------+-------+
|
4
|
+
| Context | Project | Issue # | Description | Duration | From | To |
|
5
|
+
+----------+------------+---------+----------------------------+----------+-------+-------+
|
6
|
+
| cantiere | giunti-web | | Layout homepage e contatti | 25 mins | 08:10 | 08:35 |
|
7
|
+
+----------+------------+---------+----------------------------+----------+-------+-------+
|
8
|
+
|
9
|
+
+---------+---------+---------+-------------+----------+-------+-------+
|
10
|
+
| Friday 05/04/12 - 25 mins |
|
11
|
+
+---------+---------+---------+-------------+----------+-------+-------+
|
12
|
+
| Context | Project | Issue # | Description | Duration | From | To |
|
13
|
+
+---------+---------+---------+-------------+----------+-------+-------+
|
14
|
+
| welaika | | 3293 | Ricette | 25 mins | 15:04 | 15:29 |
|
15
|
+
+---------+---------+---------+-------------+----------+-------+-------+
|
16
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
Another task @home
|
2
|
+
mailchimp #1006 +flor @cantiere
|
3
|
+
gestione utenti #987 +giunti-web @cantiere
|
4
|
+
Documentazione server su Wiki #986 +giunti-web @cantiere
|
5
|
+
Form richiesta kit #985 +giunti-web @cantiere
|
6
|
+
Invia libro ad un amico #976 +giunti-web @cantiere
|
7
|
+
Immagini promo per chrome 2012-04-04 #859 +zazit @cantiere
|
8
|
+
Correzioni frase e logo zazit 2012-04-04 #858 +zazit @cantiere
|
9
|
+
icone per safari 2012-04-02 #839 +zazit @cantiere
|
10
|
+
icona per chrome market 2012-04-02 #837 +zazit @cantiere
|
11
|
+
Rel Canonical e rel author #820 +railsyard @cantiere
|
12
|
+
DSL backend per la gestione dei model #731 +railsyard @cantiere
|
13
|
+
paradosso zazit #728 +zazit @cantiere
|
14
|
+
New Users iOS #3316 +dashboard-fiat @welaika
|
15
|
+
Orlando Locator #3296 +olasagasti @welaika
|
16
|
+
Il Paniere #3295 +olasagasti @welaika
|
17
|
+
Scheda Prodotto #3294 +olasagasti @welaika
|
18
|
+
Ricette #3293 +olasagasti @welaika
|
19
|
+
Some users have mentioned that the intranet wiki does not support 'table' markup. Can that be updated to work? #3286 +orchid @welaika
|
20
|
+
Issue with the blog emails #3269 +orchid @welaika
|
@@ -0,0 +1,6 @@
|
|
1
|
+
Export data created by Pomodoro on 2012-05-04 16:12:17 +0000
|
2
|
+
|
3
|
+
Description, When, Duration, externalInterruptions, internalInterruptions
|
4
|
+
|
5
|
+
Layout homepage e contatti +giunti-web @cantiere, 2012-05-02 08:10:08 +0000, 25, 0, 0
|
6
|
+
Ricette #3293 @welaika, 2012-05-04 15:04:57 +0000, 25, 0, 0
|