bresson 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore ADDED
@@ -0,0 +1,3 @@
1
+ pkg/*
2
+ *.gem
3
+ .bundle
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in bresson.gemspec
4
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,14 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ bresson (0.0.1)
5
+
6
+ GEM
7
+ remote: http://rubygems.org/
8
+ specs:
9
+
10
+ PLATFORMS
11
+ ruby
12
+
13
+ DEPENDENCIES
14
+ bresson!
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require 'bundler'
2
+ Bundler::GemHelper.install_tasks
data/bresson.gemspec ADDED
@@ -0,0 +1,21 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "bresson/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "bresson"
7
+ s.version = Bresson::VERSION
8
+ s.platform = Gem::Platform::RUBY
9
+ s.authors = ["Christian Mortaro", "Nicolas Iensen"]
10
+ s.email = ["christian@quavio.com.br", "nicolas@quavio.com.br"]
11
+ s.homepage = "https://github.com/quavio/bresson"
12
+ s.summary = %q{Single interface to manipulate images from 3rd party services}
13
+ s.description = %q{Abstracts the methods from different image services, like Flickr and Picasa}
14
+
15
+ s.rubyforge_project = "bresson"
16
+
17
+ s.files = `git ls-files`.split("\n")
18
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
19
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
20
+ s.require_paths = ["lib"]
21
+ end
Binary file
@@ -0,0 +1,3 @@
1
+ module Bresson
2
+ VERSION = "0.0.1"
3
+ end
data/lib/bresson.rb ADDED
@@ -0,0 +1,3 @@
1
+ module Bresson
2
+ # Your code goes here...
3
+ end
metadata ADDED
@@ -0,0 +1,74 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bresson
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 0
8
+ - 1
9
+ version: 0.0.1
10
+ platform: ruby
11
+ authors:
12
+ - Christian Mortaro
13
+ - Nicolas Iensen
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2011-04-18 00:00:00 -03:00
19
+ default_executable:
20
+ dependencies: []
21
+
22
+ description: Abstracts the methods from different image services, like Flickr and Picasa
23
+ email:
24
+ - christian@quavio.com.br
25
+ - nicolas@quavio.com.br
26
+ executables: []
27
+
28
+ extensions: []
29
+
30
+ extra_rdoc_files: []
31
+
32
+ files:
33
+ - .gitignore
34
+ - Gemfile
35
+ - Gemfile.lock
36
+ - Rakefile
37
+ - bresson.gemspec
38
+ - lib/bresson.rb
39
+ - lib/bresson/.version.rb.swp
40
+ - lib/bresson/version.rb
41
+ has_rdoc: true
42
+ homepage: https://github.com/quavio/bresson
43
+ licenses: []
44
+
45
+ post_install_message:
46
+ rdoc_options: []
47
+
48
+ require_paths:
49
+ - lib
50
+ required_ruby_version: !ruby/object:Gem::Requirement
51
+ none: false
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ segments:
56
+ - 0
57
+ version: "0"
58
+ required_rubygems_version: !ruby/object:Gem::Requirement
59
+ none: false
60
+ requirements:
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
63
+ segments:
64
+ - 0
65
+ version: "0"
66
+ requirements: []
67
+
68
+ rubyforge_project: bresson
69
+ rubygems_version: 1.3.7
70
+ signing_key:
71
+ specification_version: 3
72
+ summary: Single interface to manipulate images from 3rd party services
73
+ test_files: []
74
+