dougsko-imagebin 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
data/.document ADDED
@@ -0,0 +1,5 @@
1
+ README.rdoc
2
+ lib/**/*.rb
3
+ bin/*
4
+ features/**/*.feature
5
+ LICENSE
data/.gitignore ADDED
@@ -0,0 +1,5 @@
1
+ *.sw?
2
+ .DS_Store
3
+ coverage
4
+ rdoc
5
+ pkg
data/README.rdoc CHANGED
@@ -1,6 +1,6 @@
1
1
  = imagebin
2
2
 
3
- imagebin.rb is a CLI to http://imagebin.ca
3
+ imagebin is a CLI to http://imagebin.ca
4
4
  Example: imagebin -f <pic.png>
5
5
 
6
6
  Options:
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
+ :patch: 4
2
3
  :major: 0
3
4
  :minor: 1
4
- :patch: 3
data/bin/imagebin CHANGED
@@ -31,7 +31,7 @@ options = { "t" => "file",
31
31
  }
32
32
 
33
33
  opts = OptionParser.new do |opts|
34
- opts.banner = "imagebin.rb is a CLI to http://imagebin.ca
34
+ opts.banner = "imagebin is a CLI to http://imagebin.ca
35
35
  Example: imagebin -f <pic.png>"
36
36
 
37
37
  opts.separator ""
@@ -54,9 +54,7 @@ opts = OptionParser.new do |opts|
54
54
  end
55
55
 
56
56
  opts.on("-p", "--private", "Private") do |priv|
57
- if priv == true
58
- options[:adult] = "t"
59
- end
57
+ options[:adult] = "t"
60
58
  end
61
59
 
62
60
  opts.on_tail("-h", "--help", "Show this message") do
data/imagebin.gemspec ADDED
@@ -0,0 +1,52 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = %q{imagebin}
5
+ s.version = "0.1.4"
6
+
7
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
+ s.authors = ["dougsko"]
9
+ s.date = %q{2009-06-20}
10
+ s.default_executable = %q{imagebin}
11
+ s.description = %q{Command line interface to imagebin.ca}
12
+ s.email = %q{dougtko@gmail.com}
13
+ s.executables = ["imagebin"]
14
+ s.extra_rdoc_files = [
15
+ "LICENSE",
16
+ "README.rdoc"
17
+ ]
18
+ s.files = [
19
+ ".document",
20
+ ".gitignore",
21
+ "LICENSE",
22
+ "README.rdoc",
23
+ "Rakefile",
24
+ "VERSION.yml",
25
+ "bin/imagebin",
26
+ "imagebin.gemspec",
27
+ "spec/imagebin_spec.rb",
28
+ "spec/spec_helper.rb"
29
+ ]
30
+ s.homepage = %q{http://github.com/dougsko/imagebin}
31
+ s.rdoc_options = ["--charset=UTF-8"]
32
+ s.require_paths = ["lib"]
33
+ s.rubygems_version = %q{1.3.4}
34
+ s.summary = %q{Command line interface to imagebin.ca}
35
+ s.test_files = [
36
+ "spec/spec_helper.rb",
37
+ "spec/imagebin_spec.rb"
38
+ ]
39
+
40
+ if s.respond_to? :specification_version then
41
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
42
+ s.specification_version = 3
43
+
44
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
45
+ s.add_runtime_dependency(%q<httpclient>, [">= 0"])
46
+ else
47
+ s.add_dependency(%q<httpclient>, [">= 0"])
48
+ end
49
+ else
50
+ s.add_dependency(%q<httpclient>, [">= 0"])
51
+ end
52
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dougsko-imagebin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - dougsko
@@ -32,14 +32,17 @@ extra_rdoc_files:
32
32
  - LICENSE
33
33
  - README.rdoc
34
34
  files:
35
+ - .document
36
+ - .gitignore
35
37
  - LICENSE
36
38
  - README.rdoc
37
39
  - Rakefile
38
40
  - VERSION.yml
39
41
  - bin/imagebin
42
+ - imagebin.gemspec
40
43
  - spec/imagebin_spec.rb
41
44
  - spec/spec_helper.rb
42
- has_rdoc: true
45
+ has_rdoc: false
43
46
  homepage: http://github.com/dougsko/imagebin
44
47
  post_install_message:
45
48
  rdoc_options: