compact_index 0.7.0 → 0.8.0

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: a8225581475001c319a2ff2e5d1975ff28be15ce
4
- data.tar.gz: f47097c19665f643ec5fd64b688cdb45cc2637f1
3
+ metadata.gz: 474f80952b0a87967f5ab7b3de9417398aa8f557
4
+ data.tar.gz: 320b1fd0ae8d2abfad48853339c6918d4f1d325c
5
5
  SHA512:
6
- metadata.gz: af3eb881ad6373f6d012c73932dfcc88cc63d76e2490241aaf028629203ab309f7def27cb4765a06f8bff839054dd347f77d0c32d6f0ff1e49efc7f9b774c66c
7
- data.tar.gz: e1d6ddc1389494ba678250bb05fa97f1cdfe6e061bcc12e97b4838836b7c7afa7036b0e1db382e74bda7d3d0ccfefee5b482519131fb4a7a89b18e07361535b3
6
+ metadata.gz: 3b03b862fba7ff8ded34e3f2a8dd0fda3682662a2b131525321f6c15d32dfd971cc0709143aa320acbf1e0fe62ddeaa5c016b3b12f32bf936e53547dc4f0d08a
7
+ data.tar.gz: a7b1bc8c9dc3d0d4689b8c002db1ca22a8453a56690bc74a97c9b8c50a8b2986564bfd065fb8d41fd2d0bd4d130a06bf709216f8960d91773a4aff8f7d095a42
@@ -1,3 +1,10 @@
1
+ ## 0.8.0 (August 13, 2015)
2
+
3
+ Features:
4
+
5
+ - Change info file interface to accept create_at
6
+ - Order info output accordingly to version create_at
7
+
1
8
  ## 0.7.0 (August 4, 2015)
2
9
 
3
10
  Features:
@@ -12,7 +12,7 @@ module CompactIndex
12
12
 
13
13
  def self.info(params)
14
14
  output = "---\n"
15
- params.each do |version|
15
+ params.sort { |a,b| a[:created_at] <=> b[:created_at] }.each do |version|
16
16
  output << version_line(version) << "\n"
17
17
  end
18
18
  output
@@ -1,3 +1,3 @@
1
1
  module CompactIndex
2
- VERSION = "0.7.0"
2
+ VERSION = "0.8.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: compact_index
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - fotanus@gmail.com
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-08-04 00:00:00.000000000 Z
11
+ date: 2015-08-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake