Skip to content

Commit 0805237

Browse files
committed
bump version
1 parent 7e44abb commit 0805237

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
beta_code-*.gem

README.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,17 @@ BetaCode::beta_code_to_greek 'mh=nin a)/eide qea\\ *phlhi+a/dew *)axilh=os'
3737

3838
## Updating JSON
3939

40-
`git pull -s subtree beta-code-json master`
40+
```bash
41+
git subtree pull --prefix vendor/beta-code-json/ https://github.com/zfletch/beta-code-json master --squash
42+
```
43+
44+
In the case of a merge conflict:
45+
46+
```bash
47+
git checkout --theirs vendor/beta-code-json/
48+
git add vendor/beta-code-json
49+
git commit
50+
```
4151

4252
## Publishing Gem
4353

@@ -46,6 +56,14 @@ gem build beta_code.gemspec
4656
gem push beta_code-X.Y.Z.gem
4757
```
4858

59+
## Publishing
60+
61+
* Bump version in `beta_code.gemspec`
62+
* Commit and push to GitHub
63+
* On GitHub, create a new release
64+
* Run `gem build beta_code.gemspec`
65+
* Run `gem push beta_code-X.Y.Z.gem`
66+
4967
## Notes
5068

5169
For the mappings between beta code and Unicode, see [https://github.com/zfletch/beta-code-json](https://github.com/zfletch/beta-code-json).

beta_code.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
Gem::Specification.new do |s|
22
s.name = 'beta_code'
3-
s.version = '0.0.8'
3+
s.version = '0.0.9'
44
s.date = '2018-02-17'
55
s.summary = 'Converts Greek beta code to Greek characters and vice versa'
6-
s.description = 'Converts Greek beta code to Greek characters and vice versa'
6+
s.description = 'This is a gem that converts from Ancient Greek beta code to Unicode characters and vice versa'
77
s.authors = ['zfletch']
88
s.email = 'zfletch2@gmail.com'
99
s.files = ['lib/beta_code.rb'] + Dir['vendor/**/*']

0 commit comments

Comments
 (0)