|
1 | | -# -*- encoding: utf-8 -*- |
2 | | - |
3 | | -Gem::Specification.new do |s| |
4 | | - s.name = %q{git-media} |
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 = ["Scott Chacon"] |
9 | | - s.date = %q{2009-06-10} |
10 | | - s.default_executable = %q{git-media} |
11 | | - s.email = %q{schacon@gmail.com} |
12 | | - s.executables = ["git-media"] |
13 | | - s.extra_rdoc_files = [ |
14 | | - "LICENSE", |
15 | | - "README.md" |
16 | | - ] |
17 | | - s.files = [ |
18 | | - ".document", |
19 | | - ".gitignore", |
20 | | - "LICENSE", |
21 | | - "README.md", |
22 | | - "Rakefile", |
23 | | - "VERSION", |
24 | | - "bin/git-media", |
25 | | - "git-media.gemspec", |
26 | | - "lib/git-media/clear.rb", |
27 | | - "lib/git-media/filter-clean.rb", |
28 | | - "lib/git-media/filter-smudge.rb", |
29 | | - "lib/git-media/status.rb", |
30 | | - "lib/git-media/sync.rb", |
31 | | - "lib/git-media/update-index.rb", |
32 | | - "lib/git-media/transport", |
33 | | - "lib/git-media/transport/local.rb", |
34 | | - "lib/git-media/transport/s3.rb", |
35 | | - "lib/git-media/transport/atmos_client.rb", |
36 | | - "lib/git-media/transport/scp.rb", |
37 | | - "lib/git-media/transport/webdav.rb", |
38 | | - "lib/git-media/transport.rb", |
39 | | - "lib/git-media.rb" |
40 | | - ] |
41 | | - s.has_rdoc = true |
42 | | - s.homepage = %q{http://github.com/schacon/git-media} |
43 | | - s.rdoc_options = ["--charset=UTF-8"] |
44 | | - s.require_paths = ["lib"] |
45 | | - s.rubygems_version = %q{1.3.1} |
46 | | - s.summary = %q{"This is a summary! Stop yer whining"} |
47 | | - |
48 | | - if s.respond_to? :specification_version then |
49 | | - current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION |
50 | | - s.specification_version = 2 |
51 | | - |
52 | | - if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then |
53 | | - else |
54 | | - end |
55 | | - else |
56 | | - end |
57 | | -end |
58 | | - |
| 1 | +# Generated by jeweler |
| 2 | +# DO NOT EDIT THIS FILE DIRECTLY |
| 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 = "git-media" |
| 8 | + s.version = "0.1.4" |
| 9 | + |
| 10 | + s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= |
| 11 | + s.authors = ["Scott Chacon", "Alexander Lebedev"] |
| 12 | + s.date = "2014-09-22" |
| 13 | + s.email = "alexander.lebedev@gmail.com" |
| 14 | + s.executables = ["git-media"] |
| 15 | + s.extra_rdoc_files = [ |
| 16 | + "LICENSE", |
| 17 | + "README.md", |
| 18 | + "TODO" |
| 19 | + ] |
| 20 | + s.files = [ |
| 21 | + ".document", |
| 22 | + "Gemfile", |
| 23 | + "Gemfile.lock", |
| 24 | + "LICENSE", |
| 25 | + "README.md", |
| 26 | + "Rakefile", |
| 27 | + "TODO", |
| 28 | + "VERSION", |
| 29 | + "bin/git-media", |
| 30 | + "git-media.gemspec", |
| 31 | + "lib/git-media.rb", |
| 32 | + "lib/git-media/clear.rb", |
| 33 | + "lib/git-media/filter-clean.rb", |
| 34 | + "lib/git-media/filter-smudge.rb", |
| 35 | + "lib/git-media/status.rb", |
| 36 | + "lib/git-media/sync.rb", |
| 37 | + "lib/git-media/transport.rb", |
| 38 | + "lib/git-media/transport/atmos_client.rb", |
| 39 | + "lib/git-media/transport/local.rb", |
| 40 | + "lib/git-media/transport/s3.rb", |
| 41 | + "lib/git-media/transport/scp.rb", |
| 42 | + "lib/git-media/transport/webdav.rb", |
| 43 | + "spec/media_spec.rb", |
| 44 | + "spec/spec_helper.rb" |
| 45 | + ] |
| 46 | + s.homepage = "http://github.com/alebedev/git-media" |
| 47 | + s.require_paths = ["lib"] |
| 48 | + s.rubygems_version = "1.8.28" |
| 49 | + s.summary = "git-media" |
| 50 | + |
| 51 | + if s.respond_to? :specification_version then |
| 52 | + s.specification_version = 3 |
| 53 | + |
| 54 | + if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then |
| 55 | + s.add_runtime_dependency(%q<trollop>, [">= 0"]) |
| 56 | + else |
| 57 | + s.add_dependency(%q<trollop>, [">= 0"]) |
| 58 | + end |
| 59 | + else |
| 60 | + s.add_dependency(%q<trollop>, [">= 0"]) |
| 61 | + end |
| 62 | +end |
| 63 | + |
0 commit comments