README.md in ass_ole-app_extension-0.1.2 vs README.md in ass_ole-app_extension-0.2.0
- old
+ new
@@ -97,9 +97,23 @@
"#{spy.apply_errors.map(&:Description).join(' - ')}"\
unless spy.plugged?
end
```
+4. Convert xml extension source to `.cfe` binary file
+
+```ruby
+src = AssOle::AppExtension::Src::Xml.new('foo_ext/xml.src', '~> 8.3.9')
+src.to_binary('foo_ext.cfe') #=> 'foo_ext.cfe'
+```
+
+5. Convert `.cfe` extension binary file to xml files
+
+```ruby
+src = AssOle::AppExtension::Src::Cfe.new('foo_ext.cfe', '~> 8.3.9')
+src.to_xml('foo_ext/xml.src') #=> 'foo_ext/xml.src'
+```
+
## Development
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).