bisu 1.4.0 → 1.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +83 -0
  3. data/lib/bisu/version.rb +2 -2
  4. metadata +3 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 352d33d3ac9d54082135084e8cd3e03a6ace04d5
4
- data.tar.gz: 3f07ec0e51bde13656405514a72aedefd63f9f65
3
+ metadata.gz: d863743f172a66d4710d38f5ae77b703dcd73336
4
+ data.tar.gz: b969af355afafd09c65586fa7f86c271aebac488
5
5
  SHA512:
6
- metadata.gz: 3126fa41a9805d8b1fb028e73c2ac4674ea73e981c5808b2cfc28324b31546f6ada14436294941fbf8278148f4987b32afe5dd0a3d2d1138fe3d8923aa6a9a12
7
- data.tar.gz: 5f76fd4c33ac8dea50f8c5a9b5472d09f7ad245897b749af15a2c0327df603b04167739ae78244c15d750a33362561ce6c89e8d607048fc69dc48f3ac81b5e88
6
+ metadata.gz: a077212dcb32df1c485c40712bf863e75a8845b1c87ba065a83996ba196509f2500128fae0b7dff9860bccc2610c07dfa508ec12ba219f39c4e96631be553de3
7
+ data.tar.gz: 55e96a239538fbc7f50aabfc3c4097972a0f8d3b2820c8f3673f9dd3ab1484ff08d49fd9eb5a66cd4c0fba8fe35390e501a11b84bd7f6804bde2c371961e6390
data/CHANGELOG.md ADDED
@@ -0,0 +1,83 @@
1
+ # Change Log
2
+ All notable changes to this project will be documented in this file.
3
+ `Bisu` adheres to [Semantic Versioning](http://semver.org/).
4
+
5
+ ## [1.4.0](https://github.com/hole19/bisu/releases/tag/v1.4.0)
6
+ Released on 2016/11/18
7
+
8
+ #### Added
9
+ - OneSky integration
10
+ - New option to save a local copy of the dictionary
11
+
12
+ ## [1.3.1](https://github.com/hole19/bisu/releases/tag/v1.3.1)
13
+ Released on 2016/11/15
14
+
15
+ #### Added
16
+ - Generic code refactors to (soon) support new dictionary sources
17
+ - Better error handling when parsing Dictionary
18
+
19
+ ## [1.3.0](https://github.com/hole19/bisu/releases/tag/v1.3.0)
20
+ Released on 2016/11/02
21
+
22
+ #### Added
23
+ - New config file format
24
+ - Better error handling when parsing config file
25
+
26
+ ## [1.2.4](https://github.com/hole19/bisu/releases/tag/v1.2.4)
27
+ Released on 2016/10/23
28
+
29
+ #### Added
30
+ - Convertion of all tests to Rspec
31
+ - Generic code refactors to (soon) support new dictionary sources
32
+
33
+ ## [1.2.3](https://github.com/hole19/bisu/releases/tag/v1.2.3)
34
+ Released on 2016/10/14
35
+
36
+ #### Added
37
+ - Fixes bug when translating '@' character in Android
38
+
39
+ ## [1.2.2](https://github.com/hole19/bisu/releases/tag/v1.2.2)
40
+ Released on 2016/03/03
41
+
42
+ #### Added
43
+ - Logs error when missing translation parameter
44
+
45
+ ## [1.2.1](https://github.com/hole19/bisu/releases/tag/v1.2.1)
46
+ Released on 2015/07/31
47
+
48
+ #### Added
49
+ - Default language support
50
+
51
+ ## [1.2.0](https://github.com/hole19/bisu/releases/tag/v1.2.0)
52
+ Released on 2015/07/01
53
+
54
+ #### Added
55
+ - Localized text with parameters
56
+
57
+ ## [1.1.1](https://github.com/hole19/bisu/releases/tag/v1.1.1)
58
+ Released on 2015/07/01
59
+
60
+ #### Added
61
+ - Fixes bug when generating Android locale
62
+
63
+ ## [1.1.0](https://github.com/hole19/bisu/releases/tag/v1.1.0)
64
+ Released on 2015/07/01
65
+
66
+ #### Added
67
+ - RoR project support
68
+
69
+ ## [1.0.2](https://github.com/hole19/bisu/releases/tag/v1.0.2)
70
+ Released on 2015/02/02
71
+
72
+ #### Added
73
+ - *nothing*
74
+
75
+ ## [1.0.1](https://github.com/hole19/bisu/releases/tag/v1.0.1)
76
+ Released on 2015/01/28.
77
+
78
+ #### Added
79
+ - [#1](https://github.com/hole19/bisu/issues/1): Now bisu creates output files if they do not exist
80
+ - [#2](https://github.com/hole19/bisu/issues/2): Fixes missing dependecies error
81
+
82
+ ## [1.0.0](https://github.com/hole19/bisu/releases/tag/v1.0.0)
83
+ Released on 2015/01/28
data/lib/bisu/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Bisu
2
- VERSION = '1.4.0'
3
- VERSION_UPDATED_AT = '2016-11-18'
2
+ VERSION = '1.4.1'
3
+ VERSION_UPDATED_AT = '2016-12-01'
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bisu
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - joaoffcosta
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-11-18 00:00:00.000000000 Z
11
+ date: 2016-12-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: safe_yaml
@@ -76,6 +76,7 @@ extra_rdoc_files: []
76
76
  files:
77
77
  - ".gitignore"
78
78
  - ".rspec"
79
+ - CHANGELOG.md
79
80
  - Gemfile
80
81
  - Gemfile.lock
81
82
  - README.md