l12n 1.1.1 → 1.1.3

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4c0ef95064ef38a07401c837d519a222ab825946
4
- data.tar.gz: 2fd065a9ee9aa8dd14211bf6aa79839d9a8041e9
3
+ metadata.gz: 0b68b5408010f23a8fd9b9cae3c9398204efb296
4
+ data.tar.gz: 9f4c8a9b95c90f2d00155437e06872aa0de370d5
5
5
  SHA512:
6
- metadata.gz: d305d3cdeeba5ab55b6eada83bd293f5b21cc074629824bdbe6c70f14bd7ca97a4391cf5a54244029fce89c416cd480948a1652c2c7a5cd3fac6e12fa67dcb52
7
- data.tar.gz: ba4caba3652231c51b620162fe602e23f80b30afd78a4499297578d1eba5e945f35dfaeb1fa9017f9ab888989616e442f6b9ec4a3e3e8f0ac7c4139f9541e27a
6
+ metadata.gz: a6980cde7b1046375ff54517150f6e694115c322f8c9cd2b200088cc407aeaa857b6dab8ae6d8d641ee1b094cfeb73825dd74a8b49732350c4f5695714cbd443
7
+ data.tar.gz: 0efe7bf450f080506cd3c67a88c3944c9a54fdd8ee3198a4ce13ac5638e24420e1aaf633b9840a5400e4bda5d33c0f8265f5ab82d17688d55c0d9282985dd594
@@ -1,9 +1,24 @@
1
1
 
2
2
  #### [Current]
3
+ * [dca0a1a](../../commit/dca0a1a) - __(Muhammet DİLEK)__ gemfile fixed
4
+ * [f56d044](../../commit/f56d044) - __(Onur Ozgur OZKAN)__ Bump version 1.1.2
5
+ * [4fd9d76](../../commit/4fd9d76) - __(Onur Ozgur OZKAN)__ Bump version 1.0.0
6
+
7
+ #### 1.1.2
8
+ * [6f0716d](../../commit/6f0716d) - __(Muhammet DİLEK)__ bump version 1.1.2
9
+ * [68e6d75](../../commit/68e6d75) - __(Muhammet DİLEK)__ TB-35 district fixed
10
+ * [143f5c1](../../commit/143f5c1) - __(Muhammet DİLEK)__ homepage url fixed
11
+ * [bcc82c5](../../commit/bcc82c5) - __(Ahmet Sezgin Duran)__ LAB-31 #time 1m Add named logo
12
+ * [082115a](../../commit/082115a) - __(Ahmet Sezgin Duran)__ LAB-31 #time 2m Update README.md and license
13
+ * [75cc6f0](../../commit/75cc6f0) - __(Onur Ozgur OZKAN)__ Fixed scope
14
+ * [3b1f139](../../commit/3b1f139) - __(Onur Ozgur OZKAN)__ Bump version 1.1.1
15
+ * [f80d2f7](../../commit/f80d2f7) - __(Onur Ozgur OZKAN)__ Bump version 1.1.1
16
+ * [57f9bc9](../../commit/57f9bc9) - __(Onur Ozgur OZKAN)__ Support Rails 4.1.0.beta1
17
+ * [90abb18](../../commit/90abb18) - __(Onur Ozgur OZKAN)__ bump version 1.1.0
18
+ * [d9777f3](../../commit/d9777f3) - __(Onur Ozgur OZKAN)__ Move order to default scope
19
+ * [43235a3](../../commit/43235a3) - __(Onur Ozgur OZKAN)__ Bump version 1.0.1
3
20
  * [8ca356f](../../commit/8ca356f) - __(Onur Ozgur OZKAN)__ Fixed engine config error
4
21
  * [bb0e808](../../commit/bb0e808) - __(Onur Ozgur OZKAN)__ Bump version 1.0.0
5
-
6
- #### 1.0.0
7
22
  * [d75dba6](../../commit/d75dba6) - __(Onur Ozgur OZKAN)__ Bump version 1.0.0
8
23
  * [d9b3fdc](../../commit/d9b3fdc) - __(Onur Ozgur OZKAN)__ [#2](../../issues/2) Remove unit test and add rspec
9
24
  * [5f914a2](../../commit/5f914a2) - __(Onur Ozgur OZKAN)__ [#3](../../issues/3) Order locations by name
@@ -1,4 +1,4 @@
1
- Copyright (c) 2013 lab2023 - internet technologies
1
+ Copyright (c) 2014 lab2023 - information technologies
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -101,10 +101,12 @@ Once you've made your great commits:
101
101
 
102
102
  ## Credits
103
103
 
104
+ ![lab2023](http://lab2023.com/assets/images/named-logo.png)
105
+
104
106
  - L12n is maintained and funded by [lab2023 - information technologies](http://lab2023.com/)
105
107
  - Thank you to all the [contributors!](https://github.com/kebab-project/l12n/graphs/contributors)
106
108
  - The names and logos for lab2023 are trademarks of lab2023, inc.
107
109
 
108
110
  ## License
109
111
 
110
- Copyright 2012 lab2023 – information technologies
112
+ Copyright 2014 lab2023 – information technologies
@@ -1,4 +1,4 @@
1
1
  class City < ActiveRecord::Base
2
- default_scope -> { order_by(name: :asc) }
2
+ default_scope { order(name: :asc) }
3
3
  has_many :districts
4
4
  end
@@ -1,4 +1,4 @@
1
1
  class District < ActiveRecord::Base
2
- default_scope -> { order_by(name: :asc) }
2
+ default_scope { order(name: :asc) }
3
3
  belongs_to :city
4
4
  end
@@ -647,10 +647,6 @@
647
647
  id: 162
648
648
  name: "Bitlis"
649
649
  city_id: 13
650
- -
651
- id: 163
652
- name: "Addistrictsvaz"
653
- city_id: 13
654
650
  -
655
651
  id: 164
656
652
  name: "Ahlat"
@@ -1,3 +1,3 @@
1
1
  module L12n
2
- VERSION = '1.1.1'.freeze
2
+ VERSION = '1.1.3'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: l12n
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - lab2023
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-02-14 00:00:00.000000000 Z
11
+ date: 2014-05-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -73,10 +73,6 @@ executables: []
73
73
  extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
- - CHANGELOG.md
77
- - MIT-LICENSE
78
- - README.md
79
- - Rakefile
80
76
  - app/assets/javascripts/l12n/application.js
81
77
  - app/assets/javascripts/l12n/cities.js
82
78
  - app/assets/javascripts/l12n/districts.js
@@ -100,12 +96,16 @@ files:
100
96
  - config/routes.rb
101
97
  - db/migrate/20131016074302_create_cities.rb
102
98
  - db/migrate/20131016074403_create_districts.rb
103
- - lib/l12n.rb
104
99
  - lib/l12n/engine.rb
105
100
  - lib/l12n/version.rb
101
+ - lib/l12n.rb
106
102
  - lib/tasks/l12n_tasks.rake
103
+ - MIT-LICENSE
104
+ - Rakefile
105
+ - README.md
106
+ - CHANGELOG.md
107
107
  - spec/spec_helper.rb
108
- homepage: https://github.com/kebab-project/l12n
108
+ homepage: https://github.com/lab2023/l12n
109
109
  licenses: []
110
110
  metadata: {}
111
111
  post_install_message:
@@ -124,7 +124,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
124
124
  version: '0'
125
125
  requirements: []
126
126
  rubyforge_project:
127
- rubygems_version: 2.2.0
127
+ rubygems_version: 2.1.11
128
128
  signing_key:
129
129
  specification_version: 4
130
130
  summary: Locations data