i18n-js 3.0.0.rc16 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2bdd993cc2123f7996d8770f22fbe77d083c4d16
4
- data.tar.gz: e8d72e140dd4a56dd87125054bd14359d738b336
3
+ metadata.gz: 353417f345acd62bc99d23f7a5fec4009cc0ee3e
4
+ data.tar.gz: f06f7d88940146630ad37d71dc64d0ed7e746a75
5
5
  SHA512:
6
- metadata.gz: bbeea2c099c506bdceb373085e054e408caf5f1d662968c33595cc9e5b65aafdd117826ace1a55da9a68b18ff670f48e71649737ff31ba2df197868e04992868
7
- data.tar.gz: 617d9be3db375c09d69d332053f29d391c49a4e8a6939dc89cf938b0de2f927b52d7cf29af1dcfbcd50911ef7970420c1fdca63721f182890bc0c4eff8c69f16
6
+ metadata.gz: 40cb6d125502a38e0a9e87bb57fb57f3a4913ad6647a0431bd9c81cfa40b60b37b77562bec24c93c0a3b40687be33163107c63e9af7abc7a2d35a323dfc8fcee
7
+ data.tar.gz: a6503dbaecb63aa9638f348e28625df2854399dd5c4cacacc776a13f2fdfd88aef8ca21f0aed3d6b6e1cb56571c83d8ca270ba6f949c4b14c452cdf177472fcd
@@ -18,6 +18,17 @@ This project adheres to [Semantic Versioning](http://semver.org/).
18
18
  - Nothing
19
19
 
20
20
 
21
+ ## [3.0.0] - 2017-04-01
22
+
23
+ This is a fake official release, the *real* one will be `3.0.0.rc17`
24
+ And today is not April Fools' Day
25
+
26
+ ### Fixed
27
+
28
+ - Ends the longest Release Candidate period among all ruby gems
29
+ (v3.0.0.rc1 released at 2012-05-10)
30
+
31
+
21
32
  ## [3.0.0.rc16] - 2017-03-13
22
33
 
23
34
  ### Changed
@@ -229,7 +240,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
229
240
 
230
241
 
231
242
 
232
- [Unreleased]: https://github.com/fnando/i18n-js/compare/v3.0.0.rc16...HEAD
243
+ [Unreleased]: https://github.com/fnando/i18n-js/compare/v3.0.0...HEAD
244
+ [3.0.0]: https://github.com/fnando/i18n-js/compare/v3.0.0.rc16...v3.0.0
233
245
  [3.0.0.rc16]: https://github.com/fnando/i18n-js/compare/v3.0.0.rc15...v3.0.0.rc16
234
246
  [3.0.0.rc15]: https://github.com/fnando/i18n-js/compare/v3.0.0.rc14...v3.0.0.rc15
235
247
  [3.0.0.rc14]: https://github.com/fnando/i18n-js/compare/v3.0.0.rc13...v3.0.0.rc14
data/README.md CHANGED
@@ -1,7 +1,12 @@
1
1
  # I18n.js
2
2
 
3
+ [![Gem Version](http://img.shields.io/gem/v/i18n-js.svg?style=flat-square)](http://badge.fury.io/rb/i18n-js)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg?style=flat-square)](https://opensource.org/licenses/MIT)
5
+
3
6
  [![Build Status](http://img.shields.io/travis/fnando/i18n-js.svg?style=flat-square)](https://travis-ci.org/fnando/i18n-js)
7
+ [![Dependency Status](http://img.shields.io/gemnasium/fnando/i18n-js.svg?style=flat-square)](https://gemnasium.com/fnando/i18n-js)
4
8
  [![Code Climate](http://img.shields.io/codeclimate/github/fnando/i18n-js.svg?style=flat-square)](https://codeclimate.com/github/fnando/i18n-js)
9
+
5
10
  [![Gitter](https://img.shields.io/badge/gitter-join%20chat-1dce73.svg?style=flat-square)](https://gitter.im/fnando/i18n-js)
6
11
 
7
12
  It's a small library to provide the Rails I18n translations on the JavaScript.
@@ -27,11 +32,7 @@ The `master` branch (including this README) is for latest `3.0.0.rc` instead of
27
32
 
28
33
  Add the gem to your Gemfile.
29
34
  ```ruby
30
- source "https://rubygems.org"
31
- gem "rails", "your_rails_version"
32
- # You only need this RC version constraint during the development of `3.0.0`, once stable version is released you can remove `rc11` suffix
33
- # `3.0.0.rc11` is the latest version of released RC version when this entry is changed, you might want to change it later
34
- gem "i18n-js", ">= 3.0.0.rc11"
35
+ gem "i18n-js"
35
36
  ```
36
37
 
37
38
  #### Rails app with [Asset Pipeline](http://guides.rubyonrails.org/asset_pipeline.html)
@@ -4,7 +4,7 @@ require "i18n/js/version"
4
4
 
5
5
  Gem::Specification.new do |s|
6
6
  s.name = "i18n-js"
7
- s.version = I18n::JS::Version::STRING
7
+ s.version = I18n::JS::VERSION
8
8
  s.platform = Gem::Platform::RUBY
9
9
  s.authors = ["Nando Vieira"]
10
10
  s.email = ["fnando.vieira@gmail.com"]
@@ -1,10 +1,5 @@
1
1
  module I18n
2
2
  module JS
3
- module Version
4
- MAJOR = 3
5
- MINOR = 0
6
- PATCH = 0
7
- STRING = "#{MAJOR}.#{MINOR}.#{PATCH}.rc16"
8
- end
3
+ VERSION = "3.0.0"
9
4
  end
10
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: i18n-js
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0.rc16
4
+ version: 3.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nando Vieira
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-03-13 00:00:00.000000000 Z
11
+ date: 2017-04-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: i18n
@@ -191,12 +191,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
191
191
  version: 2.1.0
192
192
  required_rubygems_version: !ruby/object:Gem::Requirement
193
193
  requirements:
194
- - - ">"
194
+ - - ">="
195
195
  - !ruby/object:Gem::Version
196
- version: 1.3.1
196
+ version: '0'
197
197
  requirements: []
198
198
  rubyforge_project:
199
- rubygems_version: 2.6.8
199
+ rubygems_version: 2.6.11
200
200
  signing_key:
201
201
  specification_version: 4
202
202
  summary: It's a small library to provide the Rails I18n translations on the Javascript.