zooniverse_data 0.1.5 → 0.1.6

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: b5f5a05367029bb29eb97303878c713df42fbb9e
4
- data.tar.gz: 671381183de96093d18cd9050adbdd00c3aa7329
3
+ metadata.gz: d360edfcdb45d9151c30f6c5286833423d7942f5
4
+ data.tar.gz: 63987b3e061a6201b5ac463527908cca723a2aa9
5
5
  SHA512:
6
- metadata.gz: 586a7e31d3ec493b87d3a7befcfc50a8d67110a4d38fa14d546ae4b1cf9272f3ce3e31c22abf00afa96ed3581bd2cfc9c283531677ba326e8fc7b4b1a1f4f10d
7
- data.tar.gz: bd01529cab5e49321e7094078495ad903e65526291c86f98d811587c1fc5437efd4a0e29bacbdb789ecd4ca3f0d64d209824315490aadebdb6ace97ecb2b9d7a
6
+ metadata.gz: b64faf59e32a65aa90b6446789c2ca8e099e78d5dbc88039f9c337ee3de0742a8eab660c61b102fbe588c57eef6fd806a57deefe28882bab80d94831f282a0cd
7
+ data.tar.gz: d00910a7810cc38e23e7608392666f3c788e23b80d3c646be9130a05ce12ced5893fb639cc755ae07203a12fe954bb14240099ac3427694e7b266e9d05745a4b
@@ -10,6 +10,5 @@ module ZooniverseData
10
10
  require 'zooniverse_data/projects/penguin'
11
11
  require 'zooniverse_data/projects/serengeti'
12
12
  require 'zooniverse_data/projects/sunspot'
13
- require 'zooniverse_data/projects/wise'
14
13
  end
15
14
  end
@@ -1,3 +1,3 @@
1
1
  module ZooniverseData
2
- VERSION = '0.1.5'
2
+ VERSION = '0.1.6'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zooniverse_data
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Parrish
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-04-29 00:00:00.000000000 Z
11
+ date: 2016-05-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -124,7 +124,6 @@ files:
124
124
  - lib/zooniverse_data/projects/penguin.rb
125
125
  - lib/zooniverse_data/projects/serengeti.rb
126
126
  - lib/zooniverse_data/projects/sunspot.rb
127
- - lib/zooniverse_data/projects/wise.rb
128
127
  - lib/zooniverse_data/version.rb
129
128
  - zooniverse_data.gemspec
130
129
  homepage: https://github.com/zooniverse/zooniverse_data
@@ -1,21 +0,0 @@
1
- module ZooniverseData
2
- module Projects
3
- class Wise
4
- include Helpers
5
-
6
- def customize_subject
7
- new_locations = {}
8
-
9
- entry.location['standard'].each do |path|
10
- image_type = path.match(/.*_(?<image_type>[a-zA-Z0-9]+)\.png$/)
11
- image_type = image_type[:image_type]
12
- new_locations[image_type] = path
13
- end
14
-
15
- new_locations['standard'] = new_locations['wise4']
16
-
17
- set_location new_locations
18
- end
19
- end
20
- end
21
- end