content_server 1.6.1 → 1.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/fix_content_data +11 -0
- data/lib/content_server/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a18f1d28236cf412a9317e5518547d305a18b46d
|
4
|
+
data.tar.gz: 9258505464a15c66a022eed7512128e4ee17b955
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad5402c9675b065871bdf91f2167006313a9f564fbe162fea25f3732a941a2ce32fd9b23361ce655bc1fe1b0affbd252b930cefbf2cc6bd59b090e61455f78d8
|
7
|
+
data.tar.gz: 9fb7a23424d60db55ae46cd5ff0e432481a171c1db293d67363e6b9be85ba66af5c6bb0344d841e9d3d551a59dc838c288080f8cc11ac3aab1d02009c8c832e4
|
@@ -0,0 +1,11 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
# Get two file names, one is source content data other is destinations.
|
4
|
+
# Converts source content data old format to new format and writes it to
|
5
|
+
# destination file.
|
6
|
+
|
7
|
+
require 'content_data/content_data'
|
8
|
+
|
9
|
+
cd = ContentData::ContentData.new
|
10
|
+
cd.from_file_old(ARGV[0])
|
11
|
+
cd.to_file(ARGV[1])
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: content_server
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- BBFS Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-05-
|
11
|
+
date: 2014-05-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: algorithms
|
@@ -100,6 +100,7 @@ executables:
|
|
100
100
|
- content_server
|
101
101
|
- backup_server
|
102
102
|
- file_utils
|
103
|
+
- fix_content_data
|
103
104
|
- testing_server
|
104
105
|
- testing_memory
|
105
106
|
extensions:
|
@@ -109,6 +110,7 @@ files:
|
|
109
110
|
- bin/backup_server
|
110
111
|
- bin/content_server
|
111
112
|
- bin/file_utils
|
113
|
+
- bin/fix_content_data
|
112
114
|
- bin/testing_memory
|
113
115
|
- bin/testing_server
|
114
116
|
- ext/run_in_background/mkrf_conf.rb
|