-
Notifications
You must be signed in to change notification settings - Fork 279
/
dryrun.gemspec
37 lines (30 loc) · 1.16 KB
/
dryrun.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
# coding: utf-8
require File.join([File.dirname(__FILE__), 'lib', 'dryrun', 'version.rb'])
# rake build # Build dryrun-0.0.1.gem into the pkg directory
# rake install # Build and install dryrun-0.0.1.gem into system gems
# rake release # Create tag v0.0.1 and build and push dryrun-0.0.1.gem t...
# rake spec # Run RSpec code examples
Gem::Specification.new do |s|
s.name = 'dryrun'
s.version = Dryrun::VERSION
s.authors = ['cesar ferreira']
s.email = ['cesar.manuel.ferreira@gmail.com']
s.summary = 'Tool to try any android library hosted online directly from the command line'
s.homepage = 'http://cesarferreira.com'
s.license = 'MIT'
s.platform = Gem::Platform::RUBY
s.files = `git ls-files`.split("
")
s.bindir = 'bin'
s.require_paths << 'lib'
s.executables << 'dryrun'
# s.required_ruby_version = '>= 2.0.0'
s.add_development_dependency 'rake'
s.add_development_dependency 'pry-byebug'
s.add_development_dependency 'rspec'
s.add_dependency 'bundler'
s.add_dependency 'colorize'
s.add_dependency 'oga'
s.add_dependency 'highline'
s.add_dependency 'rjb'
end