xcskarel 0.7.0 → 0.7.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 39abc3f49fe51f6031061aa1bd8cbd86c450212d
4
- data.tar.gz: f0557ee0a98ac1287b60918a2fd7add252895502
3
+ metadata.gz: 9989b96aa6ff52cf3fc52a82ec381ba4410d62f4
4
+ data.tar.gz: cd7fff217976a40c5405f96daf2ff3f043f5a77e
5
5
  SHA512:
6
- metadata.gz: 169569744bc82ebf333635ef5955e5d0d35768156c15bdd7646957b698835872cdcc0ba5af8824228dba498f871940d435623b169b3a5183cc1e18e571bec5bc
7
- data.tar.gz: d0fc8ae26a13210be2bd64b8a7c84f4c760af790db2ce3585b88110a4864b9c536b66a0e965c27c141ec6adc4b4201763a5cac50f95d33a5c4ce5ac5171872f5
6
+ metadata.gz: d32ad6a22b710bd163c14a188b4ff804bba907808204efe46fba78867979f86f9918c86307bb2831c9e82504d2f065848645d869fe4fcb256c9d76cf22b12bd9
7
+ data.tar.gz: 35443b16521422e86b5f183a22c6ba1689385bf265e3dc13c0e4e096f72de0f20779cacf89e14e4b53b52f280b3cb1dfde6d155ad6d353de2761f42af1ad3aa5
data/bin/xcskarel CHANGED
@@ -43,12 +43,11 @@ class XCSKarelApplication
43
43
  server = create_server_from_options(options)
44
44
  all_bots = server.get_bots
45
45
  # create Bot instances
46
- bot_objs = all_bots.map { |json| XCSKarel::Bot.new(json) }
47
- bot_files = bot_objs.map { |bot| name = "./xcskarel/#{bot.json['_id']}.json"; bot.to_file(name); name }
46
+ # bot_objs = all_bots.map { |json| XCSKarel::Bot.new(json) }
47
+ # bot_files = bot_objs.map { |bot| name = "./xcskarel/#{bot.json['_id']}.json"; bot.to_file(name); name }
48
48
  unless options.no_filter
49
49
  all_bots = XCSKarel::Filter.filter_key_paths(all_bots, ['name', '_id'])
50
50
  end
51
- binding.pry
52
51
  out = options.no_pretty ? JSON.generate(all_bots) : JSON.pretty_generate(all_bots)
53
52
  puts out
54
53
  end
@@ -1,3 +1,3 @@
1
1
  module XCSKarel
2
- VERSION = '0.7.0'
2
+ VERSION = '0.7.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xcskarel
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Honza Dvorsky