pictaculous 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
@@ -0,0 +1,52 @@
1
+ # rcov generated
2
+ coverage
3
+ coverage.data
4
+
5
+ # rdoc generated
6
+ rdoc
7
+
8
+ # yard generated
9
+ doc
10
+ .yardoc
11
+
12
+ # bundler
13
+ .bundle
14
+
15
+ # jeweler generated
16
+ pkg
17
+
18
+ # Have editor/IDE/OS specific files you need to ignore? Consider using a global gitignore:
19
+ #
20
+ # * Create a file at ~/.gitignore
21
+ # * Include files you want ignored
22
+ # * Run: git config --global core.excludesfile ~/.gitignore
23
+ #
24
+ # After doing this, these files will be ignored in all your git projects,
25
+ # saving you from having to 'pollute' every project you touch with them
26
+ #
27
+ # Not sure what to needs to be ignored for particular editors/OSes? Here's some ideas to get you started. (Remember, remove the leading # of the line)
28
+ #
29
+ # For MacOS:
30
+ #
31
+ #.DS_Store
32
+
33
+ # For TextMate
34
+ #*.tmproj
35
+ #tmtags
36
+
37
+ # For emacs:
38
+ #*~
39
+ #\#*
40
+ #.\#*
41
+
42
+ # For vim:
43
+ #*.swp
44
+
45
+ # For redcar:
46
+ #.redcar
47
+
48
+ # For rubinius:
49
+ #*.rbc
50
+
51
+ # Ignore gem builds
52
+ *.gem
data/.rvmrc ADDED
@@ -0,0 +1,47 @@
1
+ #!/usr/bin/env bash
2
+
3
+ # This is an RVM Project .rvmrc file, used to automatically load the ruby
4
+ # development environment upon cd'ing into the directory
5
+
6
+ # First we specify our desired <ruby>[@<gemset>], the @gemset name is optional.
7
+ environment_id="ruby-1.9.3-p286@pictaculous"
8
+
9
+ #
10
+ # Uncomment following line if you want options to be set only for given project.
11
+ #
12
+ # PROJECT_JRUBY_OPTS=( --1.9 )
13
+
14
+ #
15
+ # First we attempt to load the desired environment directly from the environment
16
+ # file. This is very fast and efficient compared to running through the entire
17
+ # CLI and selector. If you want feedback on which environment was used then
18
+ # insert the word 'use' after --create as this triggers verbose mode.
19
+ #
20
+ if [[ -d "${rvm_path:-$HOME/.rvm}/environments" \
21
+ && -s "${rvm_path:-$HOME/.rvm}/environments/$environment_id" ]]
22
+ then
23
+ \. "${rvm_path:-$HOME/.rvm}/environments/$environment_id"
24
+
25
+ if [[ -s "${rvm_path:-$HOME/.rvm}/hooks/after_use" ]]
26
+ then
27
+ . "${rvm_path:-$HOME/.rvm}/hooks/after_use"
28
+ fi
29
+ else
30
+ # If the environment file has not yet been created, use the RVM CLI to select.
31
+ if ! rvm --create "$environment_id"
32
+ then
33
+ echo "Failed to create RVM environment '${environment_id}'."
34
+ exit 1
35
+ fi
36
+ fi
37
+
38
+ #
39
+ # If you use an RVM gemset file to install a list of gems (*.gems), you can have
40
+ # it be automatically loaded. Uncomment the following and adjust the filename if
41
+ # necessary.
42
+ #
43
+ # filename=".gems"
44
+ # if [[ -s "$filename" ]] ; then
45
+ # rvm gemset import "$filename" | grep -v already | grep -v listed | grep -v complete | sed '/^$/d'
46
+ # fi
47
+
data/Gemfile ADDED
@@ -0,0 +1,11 @@
1
+ source "http://rubygems.org"
2
+
3
+ gem 'curb'
4
+ gem 'hashie'
5
+ gem 'json'
6
+
7
+ group :development do
8
+ gem "bundler", '>= 1.0.0'
9
+ gem 'fakeweb'
10
+ gem 'rspec'
11
+ end
@@ -0,0 +1,25 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ curb (0.8.3)
5
+ diff-lcs (1.1.3)
6
+ fakeweb (1.3.0)
7
+ hashie (1.2.0)
8
+ rspec (2.12.0)
9
+ rspec-core (~> 2.12.0)
10
+ rspec-expectations (~> 2.12.0)
11
+ rspec-mocks (~> 2.12.0)
12
+ rspec-core (2.12.0)
13
+ rspec-expectations (2.12.0)
14
+ diff-lcs (~> 1.1.3)
15
+ rspec-mocks (2.12.0)
16
+
17
+ PLATFORMS
18
+ ruby
19
+
20
+ DEPENDENCIES
21
+ bundler (>= 1.0.0)
22
+ curb
23
+ fakeweb
24
+ hashie
25
+ rspec
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2012 Brian Getting
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,42 @@
1
+ = Pictaculous
2
+
3
+ Pictaculous is a Ruby gem that provides a wrapper for interacting with the {Pictaculous API}[http://www.pictaculous.com/api/]. Simply provide an image, and Pictaculous will return color palettes to match your image.
4
+
5
+ == Installation
6
+
7
+ (sudo) gem install pictaculous
8
+
9
+ == Usage
10
+
11
+ Please refer to the {Pictaculous API Documentation}[http://www.pictaculous.com/api/] for information about what data the API will return.
12
+
13
+ require 'pictaculous'
14
+
15
+ image_data = File.read('/path/to/image.jpg')
16
+ palettes = Pictaculous.find(image_data)
17
+
18
+ palettes.info.colors
19
+ => ["C9C9C9", "010101", "000000", "877866", "FFFFFF"]
20
+
21
+ palettes.kuler_themes.size
22
+ => 5
23
+
24
+ If there is an error, it will be returned in the response:
25
+
26
+ palettes.error if palettes.respond_to?(:error)
27
+ => "Invalid file type"
28
+
29
+ == Contributing to Pictaculous
30
+
31
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
32
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
33
+ * Fork the project.
34
+ * Start a feature/bugfix branch.
35
+ * Commit and push until you are happy with your contribution.
36
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
37
+ * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
38
+
39
+ == Copyright
40
+
41
+ Copyright (c) 2012 Tatemae Consultancy. See LICENSE.txt for further details.
42
+
@@ -0,0 +1,29 @@
1
+ $LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
2
+ require "bundler/version"
3
+ require "rake/testtask"
4
+ require "./lib/pictaculous"
5
+ require 'rspec/core'
6
+ require 'rspec/core/rake_task'
7
+
8
+ RSpec::Core::RakeTask.new(:spec) do |spec|
9
+ spec.pattern = FileList['spec/**/*_spec.rb']
10
+ end
11
+
12
+ RSpec::Core::RakeTask.new(:rcov) do |spec|
13
+ spec.pattern = 'spec/**/*_spec.rb'
14
+ spec.rcov = true
15
+ end
16
+
17
+ task :default => :spec
18
+
19
+ desc "Build the gem"
20
+ task :build do
21
+ system "gem build pictaculous.gemspec"
22
+ end
23
+
24
+ desc "Build and release the gem"
25
+ task :release => :build do
26
+ system "gem push pictaculous-#{Pictaculous::VERSION}.gem"
27
+ end
28
+
29
+ task :default => :test
@@ -0,0 +1,12 @@
1
+ require 'curb'
2
+ require 'hashie'
3
+ require 'json'
4
+
5
+ class Pictaculous
6
+ ENDPOINT = 'http://pictaculous.com/api/1.0/'
7
+ VERSION = "0.0.1" unless defined?(Pictaculous::VERSION)
8
+
9
+ def self.find(image_data)
10
+ Hashie::Mash.new(JSON.parse(Curl.post(ENDPOINT, {image: image_data}).body_str))
11
+ end
12
+ end
@@ -0,0 +1,27 @@
1
+ require 'bundler'
2
+ require 'bundler/version'
3
+
4
+ require File.expand_path('lib/pictaculous')
5
+
6
+ Gem::Specification.new do |s|
7
+ s.add_runtime_dependency('curb')
8
+ s.add_runtime_dependency('hashie')
9
+ s.add_runtime_dependency('json')
10
+ s.add_development_dependency('fakeweb')
11
+ s.add_development_dependency('rspec')
12
+ s.name = "pictaculous"
13
+ s.authors = ["Brian Getting"]
14
+ s.description = %q{Ruby gem for interacting with the Pictaculous API. Upload an image and receive a matching color pallete as JSON.}
15
+ s.email = ["brian@tatem.ae"]
16
+ s.executables = `git ls-files -- bin/*`.split("\n").map{|f| File.basename(f)}
17
+ s.extra_rdoc_files = ["README.rdoc"]
18
+ s.files = `git ls-files`.split("\n")
19
+ s.homepage = "http://github.com/tatemae-consultancy/pictaculous.git"
20
+ s.licenses = ["MIT"]
21
+ s.require_paths = ["lib"]
22
+ s.summary = %q{Ruby gem for interacting with the Pictaculous API.}
23
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
24
+ s.version = Pictaculous::VERSION
25
+ s.platform = Gem::Platform::RUBY
26
+ s.required_rubygems_version = Gem::Requirement.new('>= 1.3.6') if s.respond_to? :required_rubygems_version=
27
+ end
@@ -0,0 +1 @@
1
+ require 'pictaculous'
@@ -0,0 +1,13 @@
1
+ require 'spec_helper'
2
+
3
+ describe Pictaculous do
4
+
5
+ it "requires an image argument" do
6
+ expect {Pictaculous.find}.to raise_error(ArgumentError)
7
+ end
8
+
9
+ it "queries the API" do
10
+ Pictaculous.find('string_of_binary_image_data').error.should eq("Invalid file type")
11
+ end
12
+
13
+ end
@@ -0,0 +1,12 @@
1
+ require 'fakeweb'
2
+ require 'pictaculous'
3
+
4
+ FakeWeb.allow_net_connect = false
5
+
6
+ RSpec.configure do |config|
7
+ config.mock_with :rspec
8
+ config.before(:each) do
9
+ FakeWeb.clean_registry
10
+ FakeWeb.register_uri(:post, "http://pictaculous.com/api/1.0/", body: "Hello!")
11
+ end
12
+ end
metadata ADDED
@@ -0,0 +1,143 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pictaculous
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Brian Getting
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-11-14 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: curb
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '0'
30
+ - !ruby/object:Gem::Dependency
31
+ name: hashie
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ - !ruby/object:Gem::Dependency
47
+ name: json
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ - !ruby/object:Gem::Dependency
63
+ name: fakeweb
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ type: :development
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ - !ruby/object:Gem::Dependency
79
+ name: rspec
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ type: :development
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ description: Ruby gem for interacting with the Pictaculous API. Upload an image and
95
+ receive a matching color pallete as JSON.
96
+ email:
97
+ - brian@tatem.ae
98
+ executables: []
99
+ extensions: []
100
+ extra_rdoc_files:
101
+ - README.rdoc
102
+ files:
103
+ - .document
104
+ - .gitignore
105
+ - .rvmrc
106
+ - Gemfile
107
+ - Gemfile.lock
108
+ - LICENSE.txt
109
+ - README.rdoc
110
+ - Rakefile
111
+ - lib/pictaculous.rb
112
+ - pictaculous.gemspec
113
+ - rails/init.rb
114
+ - spec/pictaculous_spec.rb
115
+ - spec/spec_helper.rb
116
+ homepage: http://github.com/tatemae-consultancy/pictaculous.git
117
+ licenses:
118
+ - MIT
119
+ post_install_message:
120
+ rdoc_options: []
121
+ require_paths:
122
+ - lib
123
+ required_ruby_version: !ruby/object:Gem::Requirement
124
+ none: false
125
+ requirements:
126
+ - - ! '>='
127
+ - !ruby/object:Gem::Version
128
+ version: '0'
129
+ required_rubygems_version: !ruby/object:Gem::Requirement
130
+ none: false
131
+ requirements:
132
+ - - ! '>='
133
+ - !ruby/object:Gem::Version
134
+ version: 1.3.6
135
+ requirements: []
136
+ rubyforge_project:
137
+ rubygems_version: 1.8.24
138
+ signing_key:
139
+ specification_version: 3
140
+ summary: Ruby gem for interacting with the Pictaculous API.
141
+ test_files:
142
+ - spec/pictaculous_spec.rb
143
+ - spec/spec_helper.rb