rjhead 0.2.88

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.
data/lib/rjhead.rb ADDED
File without changes
data/rjhead.gemspec ADDED
@@ -0,0 +1,73 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{rjhead}
8
+ s.version = "0.2.88"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Michael Dwan"]
12
+ s.date = %q{2009-12-23}
13
+ s.description = %q{stuff}
14
+ s.email = %q{mpdwan@gmail.com}
15
+ s.extensions = ["ext/extconf.rb"]
16
+ s.extra_rdoc_files = [
17
+ "LICENSE",
18
+ "README.rdoc"
19
+ ]
20
+ s.files = [
21
+ ".document",
22
+ ".gitignore",
23
+ "LICENSE",
24
+ "README.rdoc",
25
+ "Rakefile",
26
+ "VERSION",
27
+ "ext/changes.txt",
28
+ "ext/exif.c",
29
+ "ext/extconf.rb",
30
+ "ext/gpsinfo.c",
31
+ "ext/iptc.c",
32
+ "ext/jhead.1",
33
+ "ext/jhead.c",
34
+ "ext/jhead.h",
35
+ "ext/jhead.spec",
36
+ "ext/jpgfile.c",
37
+ "ext/make.bat",
38
+ "ext/makefile",
39
+ "ext/makefile-win32",
40
+ "ext/makernote.c",
41
+ "ext/myglob.c",
42
+ "ext/paths.c",
43
+ "ext/readme.txt",
44
+ "ext/usage.html",
45
+ "lib/rjhead.rb",
46
+ "rjhead.gemspec",
47
+ "setup.rake",
48
+ "test/rjhead_test.rb",
49
+ "test/test_helper.rb"
50
+ ]
51
+ s.homepage = %q{http://github.com/michaeldwan/rjhead}
52
+ s.rdoc_options = ["--charset=UTF-8"]
53
+ s.require_paths = ["lib"]
54
+ s.rubygems_version = %q{1.3.5}
55
+ s.summary = %q{stuff}
56
+ s.test_files = [
57
+ "test/rjhead_test.rb",
58
+ "test/test_helper.rb"
59
+ ]
60
+
61
+ if s.respond_to? :specification_version then
62
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
63
+ s.specification_version = 3
64
+
65
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
66
+ s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
67
+ else
68
+ s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
69
+ end
70
+ else
71
+ s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
72
+ end
73
+ end
data/setup.rake ADDED
@@ -0,0 +1 @@
1
+ puts 'hooray!'
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class RjheadTest < Test::Unit::TestCase
4
+ should "probably rename this file and start testing for real" do
5
+ flunk "hey buddy, you should probably rename this file and start testing for real"
6
+ end
7
+ end
@@ -0,0 +1,10 @@
1
+ require 'rubygems'
2
+ require 'test/unit'
3
+ require 'shoulda'
4
+
5
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
6
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
7
+ require 'rjhead'
8
+
9
+ class Test::Unit::TestCase
10
+ end
metadata ADDED
@@ -0,0 +1,94 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rjhead
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.88
5
+ platform: ruby
6
+ authors:
7
+ - Michael Dwan
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-12-23 00:00:00 -06:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: thoughtbot-shoulda
17
+ type: :development
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: "0"
24
+ version:
25
+ description: stuff
26
+ email: mpdwan@gmail.com
27
+ executables: []
28
+
29
+ extensions:
30
+ - ext/extconf.rb
31
+ extra_rdoc_files:
32
+ - LICENSE
33
+ - README.rdoc
34
+ files:
35
+ - .document
36
+ - .gitignore
37
+ - LICENSE
38
+ - README.rdoc
39
+ - Rakefile
40
+ - VERSION
41
+ - ext/changes.txt
42
+ - ext/exif.c
43
+ - ext/extconf.rb
44
+ - ext/gpsinfo.c
45
+ - ext/iptc.c
46
+ - ext/jhead.1
47
+ - ext/jhead.c
48
+ - ext/jhead.h
49
+ - ext/jhead.spec
50
+ - ext/jpgfile.c
51
+ - ext/make.bat
52
+ - ext/makefile
53
+ - ext/makefile-win32
54
+ - ext/makernote.c
55
+ - ext/myglob.c
56
+ - ext/paths.c
57
+ - ext/readme.txt
58
+ - ext/usage.html
59
+ - lib/rjhead.rb
60
+ - rjhead.gemspec
61
+ - setup.rake
62
+ - test/rjhead_test.rb
63
+ - test/test_helper.rb
64
+ has_rdoc: true
65
+ homepage: http://github.com/michaeldwan/rjhead
66
+ licenses: []
67
+
68
+ post_install_message:
69
+ rdoc_options:
70
+ - --charset=UTF-8
71
+ require_paths:
72
+ - lib
73
+ required_ruby_version: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - ">="
76
+ - !ruby/object:Gem::Version
77
+ version: "0"
78
+ version:
79
+ required_rubygems_version: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ version: "0"
84
+ version:
85
+ requirements: []
86
+
87
+ rubyforge_project:
88
+ rubygems_version: 1.3.5
89
+ signing_key:
90
+ specification_version: 3
91
+ summary: stuff
92
+ test_files:
93
+ - test/rjhead_test.rb
94
+ - test/test_helper.rb