File: atig.gemspec

package info (click to toggle)
atig 0.6.1-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 868 kB
  • sloc: ruby: 5,315; makefile: 11; sh: 3
file content (28 lines) | stat: -rw-r--r-- 4,817 bytes parent folder | download | duplicates (2)
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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/atig/version', __FILE__)

Gem::Specification.new do |spec|
  spec.name          = "atig"
  spec.version       = Atig::VERSION
  spec.authors       = ["MIZUNO Hiroki", "SHIBATA Hiroshi", ]
  spec.email         = ["mzp@ocaml.jp", "shibata.hiroshi@gmail.com"]

  spec.summary       = %q{Atig.rb is forked from cho45's tig.rb. We improve some features of tig.rb.}
  spec.description   = %q{Atig.rb is Twitter Irc Gateway.}
  spec.homepage      = "https://github.com/atig/atig"

  spec.files         = [".gitignore",".rspec",".travis.yml","Gemfile","Gemfile.lock","README.mkdn","Rakefile","atig.gemspec","bin/console","bin/setup","exe/atig","lib/atig.rb","lib/atig/agent.rb","lib/atig/agent/agent.rb","lib/atig/agent/clenup.rb","lib/atig/agent/dm.rb","lib/atig/agent/following.rb","lib/atig/agent/full_list.rb","lib/atig/agent/list.rb","lib/atig/agent/list_status.rb","lib/atig/agent/mention.rb","lib/atig/agent/noretweets.rb","lib/atig/agent/stream_follow.rb","lib/atig/agent/timeline.rb","lib/atig/agent/user_stream.rb","lib/atig/basic_twitter.rb","lib/atig/bitly.rb","lib/atig/channel.rb","lib/atig/channel/channel.rb","lib/atig/channel/dm.rb","lib/atig/channel/list.rb","lib/atig/channel/mention.rb","lib/atig/channel/retweet.rb","lib/atig/channel/timeline.rb","lib/atig/client.rb","lib/atig/command.rb","lib/atig/command/autofix.rb","lib/atig/command/command.rb","lib/atig/command/destroy.rb","lib/atig/command/dm.rb","lib/atig/command/favorite.rb","lib/atig/command/info.rb","lib/atig/command/limit.rb","lib/atig/command/location.rb","lib/atig/command/name.rb","lib/atig/command/option.rb","lib/atig/command/refresh.rb","lib/atig/command/reply.rb","lib/atig/command/retweet.rb","lib/atig/command/search.rb","lib/atig/command/spam.rb","lib/atig/command/status.rb","lib/atig/command/thread.rb","lib/atig/command/time.rb","lib/atig/command/uptime.rb","lib/atig/command/user.rb","lib/atig/command/user_info.rb","lib/atig/command/version.rb","lib/atig/command/whois.rb","lib/atig/db/db.rb","lib/atig/db/followings.rb","lib/atig/db/listenable.rb","lib/atig/db/lists.rb","lib/atig/db/roman.rb","lib/atig/db/sized_uniq_array.rb","lib/atig/db/sql.rb","lib/atig/db/statuses.rb","lib/atig/db/transaction.rb","lib/atig/exception_util.rb","lib/atig/gateway.rb","lib/atig/gateway/channel.rb","lib/atig/gateway/session.rb","lib/atig/http.rb","lib/atig/ifilter.rb","lib/atig/ifilter/expand_url.rb","lib/atig/ifilter/retweet.rb","lib/atig/ifilter/retweet_time.rb","lib/atig/ifilter/sanitize.rb","lib/atig/ifilter/strip.rb","lib/atig/ifilter/xid.rb","lib/atig/levenshtein.rb","lib/atig/monkey.rb","lib/atig/oauth-patch.rb","lib/atig/oauth.rb","lib/atig/ofilter.rb","lib/atig/ofilter/escape_url.rb","lib/atig/ofilter/footer.rb","lib/atig/ofilter/geo.rb","lib/atig/ofilter/short_url.rb","lib/atig/option.rb","lib/atig/optparse.rb","lib/atig/scheduler.rb","lib/atig/search.rb","lib/atig/search_twitter.rb","lib/atig/sized_hash.rb","lib/atig/stream.rb","lib/atig/twitter.rb","lib/atig/twitter_struct.rb","lib/atig/url_escape.rb","lib/atig/util.rb","lib/atig/version.rb","lib/memory_profiler.rb"]
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]
  spec.test_files    = ["spec/command/autofix_spec.rb","spec/command/destroy_spec.rb","spec/command/dm_spec.rb","spec/command/favorite_spec.rb","spec/command/limit_spec.rb","spec/command/location_spec.rb","spec/command/name_spec.rb","spec/command/option_spec.rb","spec/command/refresh_spec.rb","spec/command/reply_spec.rb","spec/command/retweet_spec.rb","spec/command/spam_spec.rb","spec/command/status_spec.rb","spec/command/thread_spec.rb","spec/command/time_spec.rb","spec/command/uptime_spec.rb","spec/command/user_info_spec.rb","spec/command/user_spec.rb","spec/command/version_spec.rb","spec/command/whois_spec.rb","spec/command_helper.rb","spec/db/followings_spec.rb","spec/db/listenable_spec.rb","spec/db/lists_spec.rb","spec/db/roman_spec.rb","spec/db/sized_uniq_array_spec.rb","spec/db/statuses_spec.rb","spec/ifilter/expand_url_spec.rb","spec/ifilter/retweet_spec.rb","spec/ifilter/retweet_time_spec.rb","spec/ifilter/sanitize_spec.rb","spec/ifilter/sid_spec.rb","spec/ifilter/strip_spec.rb","spec/ifilter/tid_spec.rb","spec/levenshtein_spec.rb","spec/ofilter/escape_url_spec.rb","spec/ofilter/footer_spec.rb","spec/ofilter/geo_spec.rb","spec/ofilter/short_url_spec.rb","spec/option_spec.rb","spec/sized_hash_spec.rb","spec/spec_helper.rb"]
  spec.required_ruby_version = Gem::Requirement.new(">= 1.9.3")

  spec.add_dependency 'sqlite3', '>= 1.3.2'
  spec.add_dependency 'net-irc'
  spec.add_dependency 'oauth'
  spec.add_dependency 'twitter-text'

  spec.add_development_dependency 'rake'
  spec.add_development_dependency 'rspec'
end