Sha256: d811e37a9cf31e8a6f49e7090208935cc94daeadb7bdd9d61241e2ae3f7ac9c2
Contents?: true
Size: 1.16 KB
Versions: 2
Compression:
Stored size: 1.16 KB
Contents
CopyTuner Client ================= [![Build Status](https://travis-ci.org/SonicGarden/copy-tuner-ruby-client.svg?branch=master)](https://travis-ci.org/SonicGarden/copy-tuner-ruby-client) ## Getting started Add it to your Gemfile ``` gem 'copy_tuner_client' ``` Create config/initializers/copy_tuner.rb ``` CopyTunerClient.configure do |config| config.api_key = 'YOUR-API-KEY' config.host = 'COPY-TUNER-HOST-NAME' # I18n keys and messages will be sent to server if the locale matches config.locales = [:ja, :en] end ``` ## CopyTunerの翻訳ファイルをymlとして出力する 該当のRailsプロジェクトで下記のrakeを実行する ``` bundle exec rake copy_tuner:export ``` これで、`config/locales/copy_tuner.yml` に翻訳ファイルが作成されます。 Development ================= ## Spec ### default spec $ bundle exec rake ### Appraisal for Multi Version Rails spec $ bundle exec appraisal install $ bundle exec rake appraisal ## release gem $ bundle exec rake build # build gem to pkg/ dir $ bundle exec rake install # install to local gem $ bundle exec rake release # release gem to rubygems.org
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
copy_tuner_client-0.4.0 | README.md |
copy_tuner_client-0.3.5 | README.md |