Uh oh!
There was an error while loading. Please reload this page.
This repository was archived by the owner on Mar 5, 2026. It is now read-only.
forked from zph/buff
- Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathbuffer.gemspec
More file actions
Latest commit
36 lines (32 loc) · 1.38 KB
/
Copy pathbuffer.gemspec
File metadata and controls
36 lines (32 loc) · 1.38 KB
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
# -*- encoding: utf-8 -*-
lib=File.expand_path('../lib',__FILE__)
$LOAD_PATH.unshift(lib)unless $LOAD_PATH.include?(lib)
require'buffer/version'
Gem::Specification.newdo |gem|
gem.name="buffer"
gem.version=Buffer::VERSION
gem.authors=["ZPH"]
gem.email=["Zander@civet.ws"]
gem.description=%q{Buffer is an API Wrapper Gem for Bufferapp.com's API}
gem.summary=%q{Buffer is an API Wrapper Gem for Bufferapp.com's API}
gem.homepage="http://github.com/bufferapp/buffer-ruby"
gem.files=`git ls-files`.split($/)
gem.executables=gem.files.grep(%r{^bin/}).map{ |f| File.basename(f)}
gem.test_files=gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths=["lib"]
gem.add_development_dependency'rspec'
gem.add_development_dependency'webmock'
gem.add_development_dependency'guard-rspec'
gem.add_development_dependency'guard-bundler'
gem.add_development_dependency'rb-fsevent'
gem.add_development_dependency'growl'
gem.add_development_dependency'pry-uber'
gem.add_runtime_dependency'multi_json'
gem.add_runtime_dependency'yajl-ruby'
gem.add_runtime_dependency'faraday_middleware'
gem.add_runtime_dependency'faraday'
gem.add_runtime_dependency'hashie'
gem.add_runtime_dependency'rake'
gem.add_runtime_dependency'addressable'
gem.add_runtime_dependency'environs'
end