capgun 0.0.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.
@@ -0,0 +1,4 @@
1
+ .DS_Store
2
+ pkg/
3
+ .*.swp
4
+ .swp
data/Gemfile ADDED
@@ -0,0 +1,10 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'rake'
4
+
5
+ group :development do
6
+ end
7
+
8
+ group :test do
9
+ gem 'rspec'
10
+ end
@@ -0,0 +1,20 @@
1
+ GEM
2
+ remote: https://rubygems.org/
3
+ specs:
4
+ diff-lcs (1.1.3)
5
+ rake (0.9.2.2)
6
+ rspec (2.9.0)
7
+ rspec-core (~> 2.9.0)
8
+ rspec-expectations (~> 2.9.0)
9
+ rspec-mocks (~> 2.9.0)
10
+ rspec-core (2.9.0)
11
+ rspec-expectations (2.9.1)
12
+ diff-lcs (~> 1.1.3)
13
+ rspec-mocks (2.9.0)
14
+
15
+ PLATFORMS
16
+ ruby
17
+
18
+ DEPENDENCIES
19
+ rake
20
+ rspec
@@ -0,0 +1,3 @@
1
+ 2012-04-11
2
+ ==================
3
+ * Initial commit
@@ -0,0 +1,5 @@
1
+ Capgun
2
+ ======
3
+
4
+ Place holder gem for Ruby gem that will be created to interface the capgun.io
5
+ web thumb service.
@@ -0,0 +1,3 @@
1
+ require 'rubygems'
2
+ require 'bundler/setup'
3
+ Bundler::GemHelper.install_tasks
@@ -0,0 +1,23 @@
1
+ $:.unshift File.expand_path("../lib", __FILE__)
2
+ require "capgun/version"
3
+
4
+ Gem::Specification.new do |s|
5
+ s.name = "capgun"
6
+ s.version = Capgun::VERSION::STRING
7
+ s.platform = Gem::Platform::RUBY
8
+ s.authors = ["Mike Mondragon"]
9
+ s.email = ["mikemondragon@gmail.com"]
10
+ s.homepage = "http://capgun.io/"
11
+ s.summary = "Ruby API to capgun.io web thumb service"
12
+ s.description = "Ruby API to capgun.io web thumb service"
13
+
14
+ s.rubyforge_project = "capgun"
15
+ s.rubygems_version = ">= 1.3.6"
16
+
17
+ s.add_development_dependency "rspect"
18
+
19
+ s.files = `git ls-files`.split("\n")
20
+ s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
21
+ s.require_path = 'lib'
22
+ end
23
+
@@ -0,0 +1,3 @@
1
+ module Capgun
2
+ require 'capgun/version'
3
+ end
@@ -0,0 +1,10 @@
1
+ module Capgun #:nodoc:
2
+ module VERSION #:nodoc:
3
+ MAJOR = 0
4
+ MINOR = 0
5
+ TINY = 1
6
+
7
+ STRING = [MAJOR, MINOR, TINY].join('.')
8
+ end
9
+ end
10
+
metadata ADDED
@@ -0,0 +1,68 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: capgun
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Mike Mondragon
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-04-12 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rspect
16
+ requirement: &16589440 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: *16589440
25
+ description: Ruby API to capgun.io web thumb service
26
+ email:
27
+ - mikemondragon@gmail.com
28
+ executables: []
29
+ extensions: []
30
+ extra_rdoc_files: []
31
+ files:
32
+ - .gitignore
33
+ - Gemfile
34
+ - Gemfile.lock
35
+ - HISTORY.md
36
+ - README.md
37
+ - Rakefile
38
+ - capgun.gemspec
39
+ - lib/capgun.rb
40
+ - lib/capgun/version.rb
41
+ homepage: http://capgun.io/
42
+ licenses: []
43
+ post_install_message:
44
+ rdoc_options: []
45
+ require_paths:
46
+ - lib
47
+ required_ruby_version: !ruby/object:Gem::Requirement
48
+ none: false
49
+ requirements:
50
+ - - ! '>='
51
+ - !ruby/object:Gem::Version
52
+ version: '0'
53
+ segments:
54
+ - 0
55
+ hash: -1174164635801482498
56
+ required_rubygems_version: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ requirements: []
63
+ rubyforge_project: capgun
64
+ rubygems_version: 1.8.10
65
+ signing_key:
66
+ specification_version: 3
67
+ summary: Ruby API to capgun.io web thumb service
68
+ test_files: []