|
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 |
| -# stub: googl 0.7.1 ruby lib |
| 1 | +$:.push File.expand_path('../lib', __FILE__) |
| 2 | +require 'googl/version' |
6 | 3 |
|
7 | 4 | Gem::Specification.new do |s|
|
8 |
| - s.name = "googl" |
9 |
| - s.version = "0.7.1" |
| 5 | + s.name = 'googl' |
| 6 | + s.version = Googl::VERSION |
| 7 | + s.authors = ['Jesus Lopes'] |
| 8 | + s.homepage = 'http://github.com/zigotto/googl' |
| 9 | + |
| 10 | + s.licenses = ['MIT'] |
| 11 | + s.summary = 'Wrapper for the Google URL Shortener API' |
| 12 | + s.description = 'Wrapper for the Google URL Shortener API' |
10 | 13 |
|
11 |
| - s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= |
12 |
| - s.require_paths = ["lib"] |
13 |
| - s.authors = ["Jesus Lopes"] |
14 |
| - s.date = "2015-05-21" |
15 |
| - s.description = "Small library for Google URL Shortener API" |
16 |
| - |
17 |
| - s.extra_rdoc_files = [ |
18 |
| - "README.markdown" |
19 |
| - ] |
20 |
| - s.files = [ |
21 |
| - ".travis.yml", |
22 |
| - "Gemfile", |
23 |
| - "MIT-LICENSE", |
24 |
| - "README.markdown", |
25 |
| - "Rakefile", |
26 |
| - "VERSION", |
27 |
| - "googl.gemspec", |
28 |
| - "lib/googl.rb", |
29 |
| - "lib/googl/base.rb", |
30 |
| - "lib/googl/client_login.rb", |
31 |
| - "lib/googl/error.rb", |
32 |
| - "lib/googl/expand.rb", |
33 |
| - "lib/googl/oauth2/native.rb", |
34 |
| - "lib/googl/oauth2/server.rb", |
35 |
| - "lib/googl/oauth2/utils.rb", |
36 |
| - "lib/googl/request.rb", |
37 |
| - "lib/googl/ruby_extensions.rb", |
38 |
| - "lib/googl/shorten.rb", |
39 |
| - "lib/googl/utils.rb", |
40 |
| - "spec/fixtures/client_login_invalid.json", |
41 |
| - "spec/fixtures/client_login_valid.json", |
42 |
| - "spec/fixtures/expand.json", |
43 |
| - "spec/fixtures/expand_404.json", |
44 |
| - "spec/fixtures/expand_projection_clicks.json", |
45 |
| - "spec/fixtures/expand_projection_full.json", |
46 |
| - "spec/fixtures/expand_projection_strings.json", |
47 |
| - "spec/fixtures/expand_removed.json", |
48 |
| - "spec/fixtures/history.json", |
49 |
| - "spec/fixtures/history_projection_clicks.json", |
50 |
| - "spec/fixtures/oauth2/native.json", |
51 |
| - "spec/fixtures/oauth2/native_invalid.json", |
52 |
| - "spec/fixtures/oauth2/native_token_expires.json", |
53 |
| - "spec/fixtures/oauth2/server.json", |
54 |
| - "spec/fixtures/oauth2/server_invalid.json", |
55 |
| - "spec/fixtures/oauth2/server_token_expires.json", |
56 |
| - "spec/fixtures/shorten.json", |
57 |
| - "spec/fixtures/shorten_authenticated.json", |
58 |
| - "spec/fixtures/shorten_invalid_content_type.json", |
59 |
| - "spec/googl/client_spec.rb", |
60 |
| - "spec/googl/expand_spec.rb", |
61 |
| - "spec/googl/oauth2/native_spec.rb", |
62 |
| - "spec/googl/oauth2/server_spec.rb", |
63 |
| - "spec/googl/request_spec.rb", |
64 |
| - "spec/googl/shorten_spec.rb", |
65 |
| - "spec/shared_examples.rb", |
66 |
| - "spec/spec_helper.rb" |
67 |
| - ] |
68 |
| - s.homepage = "http://github.com/zigotto/googl" |
69 |
| - s.licenses = ["MIT"] |
70 |
| - s.rubygems_version = "2.4.5" |
71 |
| - s.summary = "Wrapper for Google URL Shortener API" |
| 14 | + s.files = Dir['lib/**/*'] + %w(MIT-LICENSE Rakefile README.rdoc VERSION) |
| 15 | + s.test_files = Dir['spec/**/*'] |
| 16 | + s.require_paths = ['lib'] |
72 | 17 |
|
73 |
| - if s.respond_to? :specification_version then |
74 |
| - s.specification_version = 4 |
75 |
| - |
76 |
| - if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then |
77 |
| - s.add_runtime_dependency(%q<httparty>, ["~> 0.10"]) |
78 |
| - s.add_runtime_dependency(%q<json>, [">= 1.4.6"]) |
79 |
| - s.add_development_dependency(%q<rspec>, ["~> 2.10"]) |
80 |
| - s.add_development_dependency(%q<jeweler>, [">= 1.8.3"]) |
81 |
| - s.add_development_dependency(%q<webmock>, ["~> 1.8.6"]) |
82 |
| - s.add_development_dependency(%q<timecop>, ["~> 0.7.1"]) |
83 |
| - else |
84 |
| - s.add_dependency(%q<httparty>, ["~> 0.10"]) |
85 |
| - s.add_dependency(%q<json>, [">= 1.4.6"]) |
86 |
| - s.add_dependency(%q<rspec>, ["~> 2.10"]) |
87 |
| - s.add_dependency(%q<jeweler>, [">= 1.8.3"]) |
88 |
| - s.add_dependency(%q<webmock>, ["~> 1.8.6"]) |
89 |
| - s.add_dependency(%q<timecop>, ["~> 0.7.1"]) |
90 |
| - end |
91 |
| - else |
92 |
| - s.add_dependency(%q<httparty>, ["~> 0.10"]) |
93 |
| - s.add_dependency(%q<json>, [">= 1.4.6"]) |
94 |
| - s.add_dependency(%q<rspec>, ["~> 2.10"]) |
95 |
| - s.add_dependency(%q<jeweler>, [">= 1.8.3"]) |
96 |
| - s.add_dependency(%q<webmock>, ["~> 1.8.6"]) |
97 |
| - s.add_dependency(%q<timecop>, ["~> 0.7.1"]) |
98 |
| - end |
| 18 | + s.add_dependency('httparty', '~> 0.10.0') |
| 19 | + s.add_dependency('json', '>= 1.4.6') |
| 20 | + s.add_development_dependency('rake', '~> 10') |
| 21 | + s.add_development_dependency('rspec', '~> 2.10.0') |
| 22 | + s.add_development_dependency('timecop', '~> 0.7.1') |
| 23 | + s.add_development_dependency('webmock', '~> 1.8.6') |
99 | 24 | end
|
100 |
| - |
0 commit comments