You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can install OpenXml::Docx by running `gem install openxml-docx`, or if you like Rails, include `gem "openxml-docx"` in your Gemfile.
29
+
Add this line to your application's Gemfile:
30
+
31
+
```ruby
32
+
gem 'openxml-docx'
33
+
```
34
+
35
+
And then execute:
36
+
37
+
$ bundle
38
+
39
+
Or install it yourself as:
40
+
41
+
$ gem install openxml-docx
42
+
29
43
30
44
## Current features
31
45
32
46
- Paragraphs
33
47
- Runs and text
34
48
- Formatting and styles for the paragraphs, runs, and text
35
49
50
+
36
51
## Roadmap
37
52
38
53
It's important to note that lists goes off into the future quite a bit, therefore it's very likely that it will change. That being said, this is the plan for future releases:
@@ -52,14 +67,21 @@ It's important to note that lists goes off into the future quite a bit, therefor
52
67
- 0.19.0: Mail merge
53
68
- 0.20.0: Layer on a DSL for making the whole thing smoother
54
69
55
-
## Contribute!
56
70
57
-
Want to help? Thanks, friend! Here's how:
58
71
59
-
1. Fork it
60
-
2. Make your changes on a topic branch
61
-
3. Create new a pull request
62
-
4. Receive many thank-yous
72
+
## Development
73
+
74
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
75
+
76
+
Reference for WordprocessingML can be found in Part 1 of the Fourth Edition of [ECMA-376](http://www.ecma-international.org/publications/standards/Ecma-376.htm) (the Office Open XML Standard).
77
+
78
+
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).
79
+
80
+
81
+
## Contributing
82
+
83
+
Bug reports and pull requests are welcome on GitHub at https://github.com/openxml/openxml-docx.
0 commit comments