transifex-interface-ruby 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (118) hide show
  1. checksums.yaml +6 -14
  2. data/.gitignore +17 -17
  3. data/.rspec +2 -0
  4. data/Gemfile +4 -4
  5. data/LICENSE.txt +22 -22
  6. data/README.md +517 -513
  7. data/Rakefile +1 -1
  8. data/lib/transifex.rb +84 -87
  9. data/lib/transifex/crud_requests.rb +43 -33
  10. data/lib/transifex/errors.rb +4 -4
  11. data/lib/transifex/project_components/language.rb +1 -1
  12. data/lib/transifex/project_components/language_components/coordinators.rb +4 -6
  13. data/lib/transifex/project_components/language_components/reviewers.rb +5 -8
  14. data/lib/transifex/project_components/language_components/translators.rb +6 -9
  15. data/lib/transifex/project_components/languages.rb +1 -1
  16. data/lib/transifex/resource.rb +1 -1
  17. data/lib/transifex/resource_components/content.rb +1 -1
  18. data/lib/transifex/resource_components/source.rb +1 -1
  19. data/lib/transifex/resource_components/stats.rb +1 -1
  20. data/lib/transifex/resource_components/translation.rb +1 -1
  21. data/lib/transifex/resource_components/translation_components/string.rb +1 -1
  22. data/lib/transifex/resource_components/translation_components/strings.rb +1 -1
  23. data/lib/transifex/resources.rb +1 -1
  24. data/lib/transifex/version.rb +3 -3
  25. data/spec/cassettes/fetch_formats.yml +121 -0
  26. data/spec/cassettes/language/fetch_language_info.yml +58 -0
  27. data/spec/cassettes/language/fetch_languages_info.yml +58 -0
  28. data/spec/cassettes/project/components/create_language.yml +95 -0
  29. data/spec/cassettes/project/components/create_language_non_existing_coordinator.yml +48 -0
  30. data/spec/cassettes/project/components/create_language_without_coordinator.yml +48 -0
  31. data/spec/cassettes/project/components/fetch_languages.yml +53 -0
  32. data/spec/cassettes/project/delete_project.yml +108 -0
  33. data/spec/cassettes/project/fetch_private_project_info.yml +59 -0
  34. data/spec/cassettes/project/fetch_with_details_private_project_info.yml +66 -0
  35. data/spec/cassettes/project/language/delete_language.yml +140 -0
  36. data/spec/cassettes/project/language/fetch_coordinators.yml +56 -0
  37. data/spec/cassettes/project/language/fetch_language_info.yml +52 -0
  38. data/spec/cassettes/project/language/fetch_reviewers.yml +56 -0
  39. data/spec/cassettes/project/language/fetch_translators.yml +54 -0
  40. data/spec/cassettes/project/language/fetch_with_details_language_info.yml +54 -0
  41. data/spec/cassettes/project/language/update_coordinators.yml +104 -0
  42. data/spec/cassettes/project/language/update_language.yml +100 -0
  43. data/spec/cassettes/project/language/update_non_existing_coordinator.yml +48 -0
  44. data/spec/cassettes/project/language/update_non_existing_language.yml +49 -0
  45. data/spec/cassettes/project/language/update_non_existing_reviewer.yml +101 -0
  46. data/spec/cassettes/project/language/update_non_existing_translator.yml +101 -0
  47. data/spec/cassettes/project/language/update_reviewers.yml +157 -0
  48. data/spec/cassettes/project/language/update_translators.yml +157 -0
  49. data/spec/cassettes/project/update_non_existing_attribute_private_project.yml +54 -0
  50. data/spec/cassettes/project/update_private_project.yml +120 -0
  51. data/spec/cassettes/project/update_with_missing_params_private_project.yml +54 -0
  52. data/spec/cassettes/projects/create_private_project.yml +111 -0
  53. data/spec/cassettes/projects/create_public_project.yml +111 -0
  54. data/spec/cassettes/projects/create_used_slug_project.yml +55 -0
  55. data/spec/cassettes/projects/fetch_projects.yml +61 -0
  56. data/spec/cassettes/resource/delete_not_existing_resource.yml +55 -0
  57. data/spec/cassettes/resource/delete_resource.yml +160 -0
  58. data/spec/cassettes/resource/fetch_all_languages_stats.yml +66 -0
  59. data/spec/cassettes/resource/fetch_content_as_file.yml +56 -0
  60. data/spec/cassettes/resource/fetch_content_as_hash.yml +58 -0
  61. data/spec/cassettes/resource/fetch_language_stats.yml +61 -0
  62. data/spec/cassettes/resource/fetch_not_existing_resource.yml +55 -0
  63. data/spec/cassettes/resource/fetch_resource_info.yml +59 -0
  64. data/spec/cassettes/resource/fetch_source_string_metadata.yml +52 -0
  65. data/spec/cassettes/resource/fetch_translations.yml +57 -0
  66. data/spec/cassettes/resource/fetch_updated_resource_info.yml +60 -0
  67. data/spec/cassettes/resource/fetch_updated_source_string_metadata.yml +52 -0
  68. data/spec/cassettes/resource/fetch_with_details_resource_info.yml +65 -0
  69. data/spec/cassettes/resource/fetch_with_file_and_mode_translations.yml +56 -0
  70. data/spec/cassettes/resource/fetch_with_file_translations.yml +56 -0
  71. data/spec/cassettes/resource/update_content_json.yml +115 -0
  72. data/spec/cassettes/resource/update_content_with_wrong_mimetype.yml +59 -0
  73. data/spec/cassettes/resource/update_content_yml.yml +114 -0
  74. data/spec/cassettes/resource/update_not_existing_resource.yml +55 -0
  75. data/spec/cassettes/resource/update_resource_info.yml +114 -0
  76. data/spec/cassettes/resource/update_source_language.yml +54 -0
  77. data/spec/cassettes/resource/update_source_string_metadata.yml +100 -0
  78. data/spec/cassettes/resource/update_translation_for_language.yml +62 -0
  79. data/spec/cassettes/resources/create_from_file.yml +55 -0
  80. data/spec/cassettes/resources/create_from_string.yml +54 -0
  81. data/spec/cassettes/resources/fetch_as_array.yml +62 -0
  82. data/spec/cassettes/resources/non_existing_project.yml +55 -0
  83. data/spec/cassettes/translation/fetch_string.yml +55 -0
  84. data/spec/cassettes/translation/fetch_strings.yml +54 -0
  85. data/spec/cassettes/translation/fetch_with_details_and_context_strings.yml +51 -0
  86. data/spec/cassettes/translation/fetch_with_details_and_key_strings.yml +56 -0
  87. data/spec/cassettes/translation/fetch_with_details_strings.yml +56 -0
  88. data/spec/cassettes/translation/update_multiple_translation_strings.yml +107 -0
  89. data/spec/cassettes/translation/update_single_translation_strings.yml +104 -0
  90. data/spec/cassettes/translation/update_string.yml +104 -0
  91. data/spec/lib/transifex/coordinators_spec.rb +22 -16
  92. data/spec/lib/transifex/formats_spec.rb +8 -8
  93. data/spec/lib/transifex/language_spec.rb +9 -10
  94. data/spec/lib/transifex/languages_spec.rb +8 -8
  95. data/spec/lib/transifex/project_language_spec.rb +41 -28
  96. data/spec/lib/transifex/project_languages_spec.rb +34 -18
  97. data/spec/lib/transifex/project_spec.rb +46 -73
  98. data/spec/lib/transifex/projects_spec.rb +72 -37
  99. data/spec/lib/transifex/resource_content_spec.rb +41 -24
  100. data/spec/lib/transifex/resource_source_spec.rb +21 -19
  101. data/spec/lib/transifex/resource_spec.rb +69 -41
  102. data/spec/lib/transifex/resources_spec.rb +42 -34
  103. data/spec/lib/transifex/reviewers_spec.rb +23 -17
  104. data/spec/lib/transifex/stats_spec.rb +20 -24
  105. data/spec/lib/transifex/translation_spec.rb +60 -38
  106. data/spec/lib/transifex/translation_string_spec.rb +26 -20
  107. data/spec/lib/transifex/translation_strings_spec.rb +65 -43
  108. data/spec/lib/transifex/translators_spec.rb +23 -17
  109. data/spec/lib/transifex_spec.rb +15 -0
  110. data/spec/lib/yaml/eo.yml +3 -0
  111. data/spec/spec_helper.rb +19 -83
  112. data/spec/support/client_helper.rb +8 -0
  113. data/spec/support/content_helper.rb +346 -0
  114. data/transifex-interface-ruby.gemspec +28 -25
  115. metadata +198 -21
  116. data/spec/lib/transifex/configuration_spec.rb +0 -17
  117. data/spec/lib/yaml/resource_translation_default_content_test.yml +0 -4
  118. data/spec/lib/yaml/resource_translation_reviewed_content_test.yml +0 -9
@@ -0,0 +1,111 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://www.transifex.com/api/2/projects
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"slug":"public-ruby-client","name":"Public Ruby Client","description":"Public
9
+ Ruby Client","source_language_code":"it","repository_url":"http://valid.url.it"}'
10
+ headers:
11
+ Content-Type:
12
+ - application/json
13
+ Accept:
14
+ - application/json
15
+ User-Agent:
16
+ - Transifex-interface-ruby/0.0.1
17
+ Accept-Encoding:
18
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
19
+ Authorization:
20
+ - Basic bS5naWFtYml0dG9AZnJlZWdvd2ViLml0Om1vbGxpXzAx
21
+ response:
22
+ status:
23
+ code: 201
24
+ message: CREATED
25
+ headers:
26
+ Server:
27
+ - nginx
28
+ Vary:
29
+ - Authorization, Host, Accept-Language, Cookie
30
+ Cache-Control:
31
+ - max-age=0
32
+ Content-Type:
33
+ - text/plain
34
+ Date:
35
+ - Wed, 03 May 2017 14:59:07 GMT
36
+ Expires:
37
+ - Wed, 03 May 2017 14:59:07 GMT
38
+ Transfer-Encoding:
39
+ - chunked
40
+ Content-Language:
41
+ - en
42
+ Connection:
43
+ - keep-alive
44
+ Set-Cookie:
45
+ - X-Mapping-fjhppofk=A44BEC4CD0B51682CDC2AA3E9CCFDDF4; path=/
46
+ Last-Modified:
47
+ - Wed, 03 May 2017 14:59:07 GMT
48
+ X-Frame-Options:
49
+ - SAMEORIGIN
50
+ body:
51
+ encoding: UTF-8
52
+ string: Created
53
+ http_version:
54
+ recorded_at: Wed, 03 May 2017 14:59:08 GMT
55
+ - request:
56
+ method: get
57
+ uri: http://www.transifex.com/api/2/project/public-ruby-client
58
+ body:
59
+ encoding: UTF-8
60
+ string: "{}"
61
+ headers:
62
+ Content-Type:
63
+ - application/json
64
+ Accept:
65
+ - application/json
66
+ User-Agent:
67
+ - Transifex-interface-ruby/0.0.1
68
+ Accept-Encoding:
69
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
70
+ Authorization:
71
+ - Basic bS5naWFtYml0dG9AZnJlZWdvd2ViLml0Om1vbGxpXzAx
72
+ response:
73
+ status:
74
+ code: 200
75
+ message: OK
76
+ headers:
77
+ Server:
78
+ - nginx
79
+ Vary:
80
+ - Accept-Encoding
81
+ - Authorization, Host, Accept-Language, Cookie
82
+ Cache-Control:
83
+ - max-age=0
84
+ Content-Type:
85
+ - application/json; charset=utf-8
86
+ Date:
87
+ - Wed, 03 May 2017 14:59:08 GMT
88
+ Expires:
89
+ - Wed, 03 May 2017 14:59:08 GMT
90
+ Transfer-Encoding:
91
+ - chunked
92
+ Content-Language:
93
+ - en
94
+ X-Content-Type-Options:
95
+ - nosniff
96
+ Connection:
97
+ - keep-alive
98
+ Set-Cookie:
99
+ - X-Mapping-fjhppofk=A44BEC4CD0B51682CDC2AA3E9CCFDDF4; path=/
100
+ Last-Modified:
101
+ - Wed, 03 May 2017 14:59:08 GMT
102
+ X-Frame-Options:
103
+ - SAMEORIGIN
104
+ body:
105
+ encoding: ASCII-8BIT
106
+ string: "{\n \"description\": \"Public Ruby Client\", \n \"source_language_code\":
107
+ \"it\", \n \"slug\": \"public-ruby-client\", \n \"name\": \"Public Ruby
108
+ Client\"\n}"
109
+ http_version:
110
+ recorded_at: Wed, 03 May 2017 14:59:08 GMT
111
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,55 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://www.transifex.com/api/2/projects
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"slug":"private-ruby-client","name":"Private Ruby Client","description":"Private
9
+ Ruby Client","source_language_code":"eo","private":true}'
10
+ headers:
11
+ Content-Type:
12
+ - application/json
13
+ Accept:
14
+ - application/json
15
+ User-Agent:
16
+ - Transifex-interface-ruby/0.0.1
17
+ Accept-Encoding:
18
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
19
+ Authorization:
20
+ - Basic bS5naWFtYml0dG9AZnJlZWdvd2ViLml0Om1vbGxpXzAx
21
+ response:
22
+ status:
23
+ code: 400
24
+ message: BAD REQUEST
25
+ headers:
26
+ Server:
27
+ - nginx
28
+ Vary:
29
+ - Authorization, Host, Accept-Language, Cookie
30
+ Cache-Control:
31
+ - max-age=0
32
+ Content-Type:
33
+ - text/plain
34
+ Date:
35
+ - Wed, 03 May 2017 15:05:38 GMT
36
+ Expires:
37
+ - Wed, 03 May 2017 15:05:38 GMT
38
+ Transfer-Encoding:
39
+ - chunked
40
+ Content-Language:
41
+ - en
42
+ Connection:
43
+ - close
44
+ Set-Cookie:
45
+ - X-Mapping-fjhppofk=100E7CB61F7D5C274279F09EADF920A3; path=/
46
+ Last-Modified:
47
+ - Wed, 03 May 2017 15:05:38 GMT
48
+ X-Frame-Options:
49
+ - SAMEORIGIN
50
+ body:
51
+ encoding: UTF-8
52
+ string: '[u"[(''slug'', [u''Project with this Slug already exists.''])]"]'
53
+ http_version:
54
+ recorded_at: Wed, 03 May 2017 15:05:38 GMT
55
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,61 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://www.transifex.com/api/2/projects
6
+ body:
7
+ encoding: UTF-8
8
+ string: "{}"
9
+ headers:
10
+ Content-Type:
11
+ - application/json
12
+ Accept:
13
+ - application/json
14
+ User-Agent:
15
+ - Transifex-interface-ruby/0.0.1
16
+ Accept-Encoding:
17
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
18
+ Authorization:
19
+ - Basic bS5naWFtYml0dG9AZnJlZWdvd2ViLml0Om1vbGxpXzAx
20
+ response:
21
+ status:
22
+ code: 200
23
+ message: OK
24
+ headers:
25
+ Server:
26
+ - nginx
27
+ Vary:
28
+ - Accept-Encoding
29
+ - Authorization, Host, Accept-Language, Cookie
30
+ Cache-Control:
31
+ - max-age=0
32
+ Content-Type:
33
+ - application/json; charset=utf-8
34
+ Date:
35
+ - Wed, 03 May 2017 15:27:11 GMT
36
+ Expires:
37
+ - Wed, 03 May 2017 15:27:11 GMT
38
+ Transfer-Encoding:
39
+ - chunked
40
+ Content-Language:
41
+ - en
42
+ X-Content-Type-Options:
43
+ - nosniff
44
+ Connection:
45
+ - keep-alive
46
+ Set-Cookie:
47
+ - X-Mapping-fjhppofk=371E5B112B2394FA3017E8BE0809059C; path=/
48
+ Last-Modified:
49
+ - Wed, 03 May 2017 15:27:11 GMT
50
+ X-Frame-Options:
51
+ - SAMEORIGIN
52
+ body:
53
+ encoding: ASCII-8BIT
54
+ string: "[\n {\n \"description\": \"Private Ruby Client\", \n \"source_language_code\":
55
+ \"eo\", \n \"slug\": \"private-ruby-client\", \n \"name\": \"Private
56
+ Ruby Client\"\n }, \n {\n \"description\": \"Ruby Client\", \n
57
+ \ \"source_language_code\": \"eo\", \n \"slug\": \"ruby-client\",
58
+ \n \"name\": \"Ruby Client\"\n }\n]"
59
+ http_version:
60
+ recorded_at: Wed, 03 May 2017 15:27:11 GMT
61
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,55 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: delete
5
+ uri: http://www.transifex.com/api/2/project/ruby-client/resource/not_existing_resource
6
+ body:
7
+ encoding: UTF-8
8
+ string: "{}"
9
+ headers:
10
+ Content-Type:
11
+ - application/json
12
+ Accept:
13
+ - application/json
14
+ User-Agent:
15
+ - Transifex-interface-ruby/0.0.1
16
+ Accept-Encoding:
17
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
18
+ Authorization:
19
+ - Basic bS5naWFtYml0dG9AZnJlZWdvd2ViLml0Om1vbGxpXzAx
20
+ response:
21
+ status:
22
+ code: 404
23
+ message: NOT FOUND
24
+ headers:
25
+ Server:
26
+ - nginx
27
+ Vary:
28
+ - Accept-Encoding
29
+ - Authorization, Host, Accept-Language, Cookie
30
+ Cache-Control:
31
+ - max-age=0
32
+ Content-Type:
33
+ - text/plain
34
+ Date:
35
+ - Fri, 28 Apr 2017 09:46:58 GMT
36
+ Expires:
37
+ - Fri, 28 Apr 2017 09:46:58 GMT
38
+ Transfer-Encoding:
39
+ - chunked
40
+ Content-Language:
41
+ - en
42
+ Connection:
43
+ - keep-alive
44
+ Set-Cookie:
45
+ - X-Mapping-fjhppofk=300CA58EE011BC6BC0E393EE4F2B31F6; path=/
46
+ Last-Modified:
47
+ - Fri, 28 Apr 2017 09:46:58 GMT
48
+ X-Frame-Options:
49
+ - SAMEORIGIN
50
+ body:
51
+ encoding: ASCII-8BIT
52
+ string: Not Found
53
+ http_version:
54
+ recorded_at: Fri, 28 Apr 2017 09:46:58 GMT
55
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,160 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://www.transifex.com/api/2/project/ruby-client/resources
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"slug":"resource_to_be_deleted","name":"Resource to be deleted","i18n_type":"TXT","content":"nothing
9
+ to see here"}'
10
+ headers:
11
+ Content-Type:
12
+ - application/json
13
+ Accept:
14
+ - application/json
15
+ User-Agent:
16
+ - Transifex-interface-ruby/0.0.1
17
+ Accept-Encoding:
18
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
19
+ Authorization:
20
+ - Basic bS5naWFtYml0dG9AZnJlZWdvd2ViLml0Om1vbGxpXzAx
21
+ response:
22
+ status:
23
+ code: 201
24
+ message: CREATED
25
+ headers:
26
+ Server:
27
+ - nginx
28
+ Vary:
29
+ - Authorization, Host, Accept-Language, Cookie
30
+ Cache-Control:
31
+ - max-age=0
32
+ Content-Type:
33
+ - application/json; charset=utf-8
34
+ Date:
35
+ - Fri, 28 Apr 2017 10:01:08 GMT
36
+ Expires:
37
+ - Fri, 28 Apr 2017 10:01:08 GMT
38
+ Transfer-Encoding:
39
+ - chunked
40
+ Content-Language:
41
+ - en
42
+ Connection:
43
+ - keep-alive
44
+ Set-Cookie:
45
+ - X-Mapping-fjhppofk=300CA58EE011BC6BC0E393EE4F2B31F6; path=/
46
+ Last-Modified:
47
+ - Fri, 28 Apr 2017 10:01:08 GMT
48
+ X-Frame-Options:
49
+ - SAMEORIGIN
50
+ body:
51
+ encoding: UTF-8
52
+ string: "[\n 1, \n 0, \n 0\n]"
53
+ http_version:
54
+ recorded_at: Fri, 28 Apr 2017 10:01:08 GMT
55
+ - request:
56
+ method: delete
57
+ uri: http://www.transifex.com/api/2/project/ruby-client/resource/resource_to_be_deleted
58
+ body:
59
+ encoding: UTF-8
60
+ string: "{}"
61
+ headers:
62
+ Content-Type:
63
+ - application/json
64
+ Accept:
65
+ - application/json
66
+ User-Agent:
67
+ - Transifex-interface-ruby/0.0.1
68
+ Accept-Encoding:
69
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
70
+ Authorization:
71
+ - Basic bS5naWFtYml0dG9AZnJlZWdvd2ViLml0Om1vbGxpXzAx
72
+ response:
73
+ status:
74
+ code: 204
75
+ message: NO CONTENT
76
+ headers:
77
+ Server:
78
+ - nginx
79
+ Vary:
80
+ - Authorization, Host, Accept-Language, Cookie
81
+ Cache-Control:
82
+ - max-age=0
83
+ Content-Type:
84
+ - text/plain
85
+ Date:
86
+ - Fri, 28 Apr 2017 10:01:08 GMT
87
+ Expires:
88
+ - Fri, 28 Apr 2017 10:01:08 GMT
89
+ Content-Language:
90
+ - en
91
+ X-Content-Type-Options:
92
+ - nosniff
93
+ Connection:
94
+ - keep-alive
95
+ Set-Cookie:
96
+ - X-Mapping-fjhppofk=371E5B112B2394FA3017E8BE0809059C; path=/
97
+ Last-Modified:
98
+ - Fri, 28 Apr 2017 10:01:08 GMT
99
+ X-Frame-Options:
100
+ - SAMEORIGIN
101
+ Content-Length:
102
+ - '0'
103
+ body:
104
+ encoding: UTF-8
105
+ string: ''
106
+ http_version:
107
+ recorded_at: Fri, 28 Apr 2017 10:01:08 GMT
108
+ - request:
109
+ method: get
110
+ uri: http://www.transifex.com/api/2/project/ruby-client/resource/resource_to_be_deleted
111
+ body:
112
+ encoding: UTF-8
113
+ string: "{}"
114
+ headers:
115
+ Content-Type:
116
+ - application/json
117
+ Accept:
118
+ - application/json
119
+ User-Agent:
120
+ - Transifex-interface-ruby/0.0.1
121
+ Accept-Encoding:
122
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
123
+ Authorization:
124
+ - Basic bS5naWFtYml0dG9AZnJlZWdvd2ViLml0Om1vbGxpXzAx
125
+ response:
126
+ status:
127
+ code: 404
128
+ message: NOT FOUND
129
+ headers:
130
+ Server:
131
+ - nginx
132
+ Vary:
133
+ - Accept-Encoding
134
+ - Authorization, Host, Accept-Language, Cookie
135
+ Cache-Control:
136
+ - max-age=0
137
+ Content-Type:
138
+ - text/plain
139
+ Date:
140
+ - Fri, 28 Apr 2017 10:01:08 GMT
141
+ Expires:
142
+ - Fri, 28 Apr 2017 10:01:08 GMT
143
+ Transfer-Encoding:
144
+ - chunked
145
+ Content-Language:
146
+ - en
147
+ Connection:
148
+ - keep-alive
149
+ Set-Cookie:
150
+ - X-Mapping-fjhppofk=A44BEC4CD0B51682CDC2AA3E9CCFDDF4; path=/
151
+ Last-Modified:
152
+ - Fri, 28 Apr 2017 10:01:08 GMT
153
+ X-Frame-Options:
154
+ - SAMEORIGIN
155
+ body:
156
+ encoding: ASCII-8BIT
157
+ string: Not Found
158
+ http_version:
159
+ recorded_at: Fri, 28 Apr 2017 10:01:08 GMT
160
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,66 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://www.transifex.com/api/2/project/ruby-client/resource/test/stats
6
+ body:
7
+ encoding: UTF-8
8
+ string: "{}"
9
+ headers:
10
+ Content-Type:
11
+ - application/json
12
+ Accept:
13
+ - application/json
14
+ User-Agent:
15
+ - Transifex-interface-ruby/0.0.1
16
+ Accept-Encoding:
17
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
18
+ Authorization:
19
+ - Basic bS5naWFtYml0dG9AZnJlZWdvd2ViLml0Om1vbGxpXzAx
20
+ response:
21
+ status:
22
+ code: 200
23
+ message: OK
24
+ headers:
25
+ Server:
26
+ - nginx
27
+ Vary:
28
+ - Accept-Encoding
29
+ - Authorization, Host, Accept-Language, Cookie
30
+ Cache-Control:
31
+ - max-age=0
32
+ Content-Type:
33
+ - application/json; charset=utf-8
34
+ Date:
35
+ - Thu, 04 May 2017 07:34:48 GMT
36
+ Expires:
37
+ - Thu, 04 May 2017 07:34:48 GMT
38
+ Transfer-Encoding:
39
+ - chunked
40
+ Content-Language:
41
+ - en
42
+ X-Content-Type-Options:
43
+ - nosniff
44
+ Connection:
45
+ - keep-alive
46
+ Set-Cookie:
47
+ - X-Mapping-fjhppofk=2F71BA404CBE394603A72279804CAC7D; path=/
48
+ Last-Modified:
49
+ - Thu, 04 May 2017 07:34:48 GMT
50
+ X-Frame-Options:
51
+ - SAMEORIGIN
52
+ body:
53
+ encoding: ASCII-8BIT
54
+ string: "{\n \"eo\": {\n \"reviewed_percentage\": \"0%\", \n \"completed\":
55
+ \"100%\", \n \"untranslated_words\": 0, \n \"last_commiter\":
56
+ \"nirnaeth\", \n \"reviewed\": 0, \n \"translated_entities\":
57
+ 1, \n \"translated_words\": 2, \n \"last_update\": \"2017-04-27
58
+ 14:08:57\", \n \"untranslated_entities\": 0\n }, \n \"en\": {\n
59
+ \ \"reviewed_percentage\": \"0%\", \n \"completed\": \"0%\",
60
+ \n \"untranslated_words\": 2, \n \"last_commiter\": \"nirnaeth\",
61
+ \n \"reviewed\": 0, \n \"translated_entities\": 0, \n \"translated_words\":
62
+ 0, \n \"last_update\": \"2017-04-27 14:08:57\", \n \"untranslated_entities\":
63
+ 1\n }\n}"
64
+ http_version:
65
+ recorded_at: Thu, 04 May 2017 07:34:48 GMT
66
+ recorded_with: VCR 3.0.3