├── LICENSE ├── README.md └── projects.json /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Ruby Türkiye 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # projects 2 | Türk geliştiricilerin açık kaynak Ruby projeleri 3 | -------------------------------------------------------------------------------- /projects.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Html2Docx", 4 | "url": "https://github.com/MuhammetDilmac/Html2Docx", 5 | "githubUrl": "MuhammetDilmac/Html2Docx", 6 | "description": "Ruby library for creating Docx from HTML output", 7 | "contributors": ["MuhammetDilmac"], 8 | "is_rubygem": true 9 | }, 10 | { 11 | "name": "tc_kimlik_no_dogrulama", 12 | "url": "https://github.com/tgezginis/tc_kimlik_no_dogrulama", 13 | "githubUrl": "tgezginis/tc_kimlik_no_dogrulama", 14 | "description": "Ruby için T.C. Kimlik Numarası doğrulama sistemi", 15 | "contributors": ["tgezginis", "kaanklky"], 16 | "is_rubygem": true 17 | }, 18 | { 19 | "name": "tors", 20 | "url": "http://muratbt.com/tors/", 21 | "githubUrl": "muratbsts/tors", 22 | "description": "Yet another torrent searching application for your command line", 23 | "contributors": ["muratbsts", "eren", "MuhammetDilmac"], 24 | "is_rubygem": true 25 | }, 26 | { 27 | "name": "logpusher-ruby", 28 | "url": "https://github.com/LogPusher/logpusher-ruby", 29 | "githubUrl": "LogPusher/logpusher-ruby", 30 | "description": "LogPusher: Log tracking for Ruby", 31 | "contributors": ["izniburak"], 32 | "is_rubygem": true 33 | }, 34 | { 35 | "name": "RoRdit", 36 | "url": "https://rordit.herokuapp.com", 37 | "githubUrl": "mertbulan/RoRdit", 38 | "description": "Link aggregation web app similar with Reddit in Ruby on Rails", 39 | "contributors": ["mertbulan", "davidesantangelo", "enderahmetyurt"], 40 | "is_rubygem": false 41 | }, 42 | { 43 | "name": "turkish_bin_numbers", 44 | "url": "https://github.com/tgezginis/turkish_bin_numbers", 45 | "githubUrl": "tgezginis/turkish_bin_numbers", 46 | "description": "Bin Numbers for Turkish Banks", 47 | "contributors": ["tgezginis"], 48 | "is_rubygem": true 49 | }, 50 | { 51 | "name": "video_player", 52 | "url": "https://github.com/tgezginis/video_player", 53 | "githubUrl": "tgezginis/video_player", 54 | "description": "Video player for Youtube, Vimeo, İzlesene and Wistia", 55 | "contributors": ["tgezginis", "mikel", "foxgaocn"], 56 | "is_rubygem": true 57 | }, 58 | { 59 | "name": "video_thumb", 60 | "url": "https://github.com/tgezginis/video_thumb", 61 | "githubUrl": "tgezginis/video_thumb", 62 | "description": "Get the thumbnails from Youtube, Vimeo and İzlesene videos", 63 | "contributors": ["tgezginis", "akosipc", "deegz"], 64 | "is_rubygem": true 65 | }, 66 | { 67 | "name": "hurriyet-ruby", 68 | "url": "https://github.com/yigitozkavci/hurriyet-ruby", 69 | "githubUrl": "yigitozkavci/hurriyet-ruby", 70 | "description": "Ruby Wrapper for Hurriyet API", 71 | "contributors": ["yigitozkavci", "enderahmetyurt"], 72 | "is_rubygem": true 73 | }, 74 | { 75 | "name": "turkish_banks", 76 | "url": "https://github.com/enderahmetyurt/turkish_banks", 77 | "githubUrl": "enderahmetyurt/turkish_banks", 78 | "description": "All Turkish Banks and Their Branches", 79 | "contributors": ["enderahmetyurt", "Hamdiakoguz", "sbagdat"], 80 | "is_rubygem": true 81 | }, 82 | { 83 | "name": "bilisim_sozlugu", 84 | "url": "https://github.com/enderahmetyurt/bilisim_sozlugu", 85 | "githubUrl": "enderahmetyurt/bilisim_sozlugu", 86 | "description": "Translating computer words from English to Turkish", 87 | "contributors": ["enderahmetyurt", "0x73", "sdogruyol"], 88 | "is_rubygem": true 89 | }, 90 | { 91 | "name": "hurriyet-cli", 92 | "url": "https://github.com/enderahmetyurt/hurriyet-cli", 93 | "githubUrl": "enderahmetyurt/hurriyet-cli", 94 | "description": "A Ruby CLI for Hurriyet", 95 | "contributors": ["enderahmetyurt", "tgezginis"], 96 | "is_rubygem": true 97 | }, 98 | { 99 | "name": "turkish_support", 100 | "url": "https://github.com/sbagdat/turkish_support", 101 | "githubUrl": "sbagdat/turkish_support", 102 | "description": "Turkish character support for core ruby methods.", 103 | "contributors": ["sbagdat", "furkanayhan"], 104 | "is_rubygem": true 105 | }, 106 | ] 107 | --------------------------------------------------------------------------------