Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-05-09 | Use CLD3 (#2949) | Akihiko Odaki | |
Compact Language Detector v3 (CLD3) is the successor of CLD2, which was used in the previous implementation. CLD3 includes improvements since CLD2, and supports newer compilers. On the other hand, it has additional requirements and cld3-ruby, the FFI of CLD3 for Ruby, is still new and may be still inmature. Though CLD3 is named after CLD2, it is implemented with a neural network model, different from the old implementation, which is based on a Naïve Bayesian classifier. CLD3 supports newer compilers, such as GCC 6. CLD2 is not compatible with GCC 6 because it assigns negative values to varibales typed unsigned. (see internal/cld_generated_cjk_uni_prop_80.cc) The support for GCC 6 and newer compilers are essential today, when some server operating system such as Ubuntu Server 16.10 has GCC 6 by default. On the one hand, CLD3 requires C++11 support. Environments with old compilers such as Ubuntu Server 14.04 needs to update the system or install a newer compiler. CLD3 needs protocol buffers as a new dependency. However,it is not considered problematic because major server operating systems, CentOS and Ubuntu Server provide them. The FFI cld3-ruby was written by me (Akihiko Odaki) for use in Mastodon. It is still new and may be inmature, but confirmed to pass existing tests. | |||
2017-05-04 | changed to run foreman with vagrant (#2742) | abcang | |
* changed to run foreman with vagrant * change port specification method and database setting * delete changes of environment variable related code * hard coated the port | |||
2017-05-04 | Make vagrant HTTP port configurable (#2510) | Colin Mitchell | |
2017-05-03 | Vagrantfile: node 6 (#2752) | kawax | |
2017-04-23 | Alter Vagrantfile to use RVM for Ruby installation (#2346) | Effy Elden | |
2017-04-23 | Export environment variables from .env.vagrant before running rails commands ↵ | Effy Elden | |
in Vagrant provisioning (#2343) | |||
2017-04-21 | Fix issue with line return in file (#1947) | Naouak | |
Fix #1940 | |||
2017-04-17 | NFS for shared folder requires a private_network (#1263) | happycoloredbanana | |
2017-04-14 | Remove current directory from PATH (#1779) | Kazuhiro NISHIYAMA | |
2017-04-11 | fix(*): ruby version was updated in .ruby-version but not Vagrant. Make them ↵ | Gavin Mogan | |
match (#1502) | |||
2017-04-06 | Add a couple of network performance tweaks to Vagrantfile. | Markus Amalthea Magnuson | |
2017-04-05 | Use NFS for the shared folder because it dramatically decreases latency for ↵ | James Moore | |
git operations. | |||
2017-01-12 | fix Vagrantfile so that the correct ruby is installed | vjackson725 | |
Prior to this commit, the vagrantfile installs ruby 2.3.3. Due to commit mastodon@7951e7f, this no longer works. Change the provision scrip so that 2.3.1 is installed via rbenv. Note this drastically increases provision time. | |||
2017-01-08 | Fix Vagrantfile to include yarn | vjackson725 | |
The current Vagrantfile fails to build upon provisioning, as it lacks yarn. Change the Vagrantfile to add the yarn repository, and install yarn. | |||
2017-01-08 | Improve Vagrantfile, load environment variables from .env.vagrant, always ↵ | Effy Elden | |
forward localhost:3000 | |||
2017-01-07 | Add Vagrant development environment support | Effy Elden | |