This repository was archived by the owner on Oct 23, 2023. It is now read-only.
forked from sferik/twitter-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtwitter.gemspec
57 lines (49 loc) · 2.62 KB
/
twitter.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "twitter/version"
Gem::Specification.new do |spec|
spec.add_dependency "addressable", "~> 2.3"
spec.add_dependency "buftok", "~> 0.3.0"
spec.add_dependency "equalizer", "~> 0.0.11"
spec.add_dependency "http", "~> 5.1"
spec.add_dependency "http-form_data", "~> 2.3"
spec.add_dependency "llhttp-ffi", ">= 0.4", "< 0.6"
spec.add_dependency "memoizable", "~> 0.4.0"
spec.add_dependency "multipart-post", "~> 2.0"
spec.add_dependency "naught", "~> 1.0"
spec.add_dependency "simple_oauth", "~> 0.3.0"
spec.authors = ["Erik Berlin", "John Nunemaker", "Wynn Netherland", "Steve Richert", "Steve Agalloco"]
spec.description = "A Ruby interface to the Twitter API."
spec.email = %w[sferik@gmail.com]
spec.files = %w[.yardopts CHANGELOG.md CONTRIBUTING.md LICENSE.md README.md twitter.gemspec] + Dir["lib/**/*.rb"]
spec.homepage = "https://sferik.github.io/twitter/"
spec.licenses = %w[MIT]
spec.metadata["rubygems_mfa_required"] = "true"
spec.name = "twitter"
spec.post_install_message = %q{📣 Attention Twitter Ruby Gem User!
If you're seeing this message, that means you're using the old Twitter Ruby gem
which is no longer maintained and will not support Twitter API v2.
🎉 Here's the good news:
We recommend switching to the X gem, which supports both v1.1 and v2 to make
the transition easier. It's a robust, modern libary that is designed to ensure
you'll be able to easily integrate any new changes Twitter/X may roll out.
🔗 For more details, visit: https://sferik.github.io/x-ruby/
🤔 Why consider sponsoring?
The X gem is free to use, but with new API pricing tiers, it actually costs
money to develop and maintain. By contributing to the project, you help us:
1. 🛠 Maintain the library: Keeping it up-to-date and secure.
2. 🌈 Add new features: Enhancements that make your life easier.
3. 💬 Provide support: Faster responses to issues and feature requests.
⭐️ Bonus: Sponsors will get priority support and influence over the project
roadmap. We will also list your name or your company's logo on our GitHub page.
🔗 To sponsor, visit: https://github.com/sponsors/sferik
Building and maintaining an open-source project like this takes a considerable
amount of time and effort. Your sponsorship can help sustain this project. Even
a small monthly donation makes a huge difference!
💖 Thanks for considering sponsorship. Together we can make the X gem even better!
}
spec.require_paths = %w[lib]
spec.required_ruby_version = ">= 3.0"
spec.summary = spec.description
spec.version = Twitter::Version
end