clarifai_ruby 0.1.0 → 0.1.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: 0ced53f51a1d90161b82e2b6dbf083e6a4290bd0
4
- data.tar.gz: 57ad2fb71566a736696c0ea6beee38f77fe59773
3
+ metadata.gz: 7f1ee99c65bb794b60079e097b4c0759ef9a8669
4
+ data.tar.gz: c0e33cd478c123d1a045074faf0c56707cbcee05
5
5
  SHA512:
6
- metadata.gz: ef0e5a970394b2e77f4a429514d748c1447293aded7eb2493466820364794211213c9163bd34f7df7db83d88bd1ca8169d75343129b12b035d2eb55aa143ff76
7
- data.tar.gz: 3c6b336faeb1f9e84f7664867d29a3c395d169eb7b3b787d912a5f6669441aff31ed354d304ff75f0af30b642ad410be2c16777e4b1657a60385e3acf591c8e4
6
+ metadata.gz: 27ec4b7d23889f256220d4fd501e57ace7cd4dca459d6b4eb96ab408599913ac1be9a847eb050db1448790a72bf4869df4fb26494d75c137ee9acdb7ddb8ef96
7
+ data.tar.gz: f70ff54ba57ae62e27d1fc63d4f43b785aad134ed92e4b9230e8f6739274775a4011450a3ea759c93b63723ad783bb0b58d8d36ed5d30690b2ff1977c49a7b1a
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # ClarifaiRuby
2
2
 
3
+ Made with love, from Prince Wilson and Charlyn Gonda (because they are awesome)
4
+
3
5
  Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/clarifai_ruby`. To experiment with that code, run `bin/console` for an interactive prompt.
4
6
 
5
7
  TODO: Delete this and the text above, and describe your gem
@@ -38,4 +40,3 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERN
38
40
  ## License
39
41
 
40
42
  The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
41
-
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["chardane@gmail.com", "maxcell.wilson@gmail.com"]
11
11
 
12
12
  spec.summary = %q{A Ruby client for the Clarifai API}
13
- spec.description = %q{Clarifai is a visual recognition API. Clarifai's algorithms enable fine grained classification, localization of objects in images and similarity search based on the combination of semantic and visual properties. }
13
+ spec.description = %q{Work In Progress - Clarifai is a visual recognition API. Clarifai's algorithms enable fine grained classification, localization of objects in images and similarity search based on the combination of semantic and visual properties. }
14
14
  spec.homepage = "https://github.com/chardane/ClarifaiRuby"
15
15
  spec.license = "MIT"
16
16
 
@@ -22,6 +22,7 @@ Gem::Specification.new do |spec|
22
22
  spec.add_development_dependency "bundler", "~> 1.11"
23
23
  spec.add_development_dependency "rake", "~> 10.0"
24
24
  spec.add_development_dependency "rspec", "~> 3.0"
25
+ spec.add_development_dependency "pry-byebug", "~> 3.3.0"
25
26
 
26
27
  spec.add_runtime_dependency "httparty", "~> 0.13.7"
27
28
  end
data/lib/clarifai_ruby.rb CHANGED
@@ -1,5 +1,9 @@
1
1
  require "clarifai_ruby/version"
2
+ require 'httparty'
2
3
 
3
4
  module ClarifaiRuby
4
5
  # Your code goes here...
6
+ def self.hello_world
7
+ "yo, boo"
8
+ end
5
9
  end
@@ -1,3 +1,3 @@
1
1
  module ClarifaiRuby
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: clarifai_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Charlyn Gonda
@@ -53,6 +53,20 @@ dependencies:
53
53
  - - ~>
54
54
  - !ruby/object:Gem::Version
55
55
  version: '3.0'
56
+ - !ruby/object:Gem::Dependency
57
+ name: pry-byebug
58
+ requirement: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - ~>
61
+ - !ruby/object:Gem::Version
62
+ version: 3.3.0
63
+ type: :development
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ~>
68
+ - !ruby/object:Gem::Version
69
+ version: 3.3.0
56
70
  - !ruby/object:Gem::Dependency
57
71
  name: httparty
58
72
  requirement: !ruby/object:Gem::Requirement
@@ -67,9 +81,9 @@ dependencies:
67
81
  - - ~>
68
82
  - !ruby/object:Gem::Version
69
83
  version: 0.13.7
70
- description: 'Clarifai is a visual recognition API. Clarifai''s algorithms enable
71
- fine grained classification, localization of objects in images and similarity search
72
- based on the combination of semantic and visual properties. '
84
+ description: 'Work In Progress - Clarifai is a visual recognition API. Clarifai''s
85
+ algorithms enable fine grained classification, localization of objects in images
86
+ and similarity search based on the combination of semantic and visual properties. '
73
87
  email:
74
88
  - chardane@gmail.com
75
89
  - maxcell.wilson@gmail.com
@@ -110,7 +124,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
110
124
  version: '0'
111
125
  requirements: []
112
126
  rubyforge_project:
113
- rubygems_version: 2.0.14
127
+ rubygems_version: 2.5.1
114
128
  signing_key:
115
129
  specification_version: 4
116
130
  summary: A Ruby client for the Clarifai API