$ rails new my-i8n --webpack
Gemfile
gem 'i18n-js'
$ rails new my-i8n --webpack
Gemfile
gem 'i18n-js'
On OS/X Sierra, after recently running a brew update I started receiving the error message Sorry, you can't use byebug without Readline when trying to run some rake tasks in my ruby project folder. I observed this in projects and gems that include byebug or pry in their Gemfile or gem.spec. I've found in my googling that many begin encountering this error message after running a brew update but there are other triggering conditions as well.
>> rake aws:show_config
WARN: Unresolved specs during Gem::Specification.reset:
mime-types (>= 0)
WARN: Clearing out unresolved specs.
Please report a bug if this causes problems.
Sorry, you can't use byebug without Readline. To solve this, you need to
| post_install do |installer| | |
| app_plist = "Emergence/Info.plist" | |
| plist_buddy = "/usr/libexec/PlistBuddy" | |
| version = `#{plist_buddy} -c "Print CFBundleShortVersionString" #{app_plist}` | |
| puts "Updating CocoaPods' version numbers to #{version}" | |
| installer.pods_project.targets.each do |target| | |
| `#{plist_buddy} -c "Set CFBundleShortVersionString #{version}" "Pods/Target Support Files/#{target}/Info.plist"` | |
| end | |
| end |