-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathruby_walk.gemspec
More file actions
21 lines (18 loc) · 867 Bytes
/
ruby_walk.gemspec
File metadata and controls
21 lines (18 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "ruby_walk/version"
Gem::Specification.new do |s|
s.name = "ruby_walk"
s.version = RubyWalk::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Maxime Bourget"]
s.email = ["maxime.bourget@gmail.com"]
s.homepage = ""
s.summary = %q{Provide a map like feature to a arbitrary tree.}
s.description = %q{call a block recursively on every object "dependencies" specified as a parameter. Can be use to iterate over a model or just generate a list of the dependencies.}
s.rubyforge_project = "ruby_walk"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end