-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspace_object.gemspec
More file actions
23 lines (19 loc) · 880 Bytes
/
space_object.gemspec
File metadata and controls
23 lines (19 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/space_object/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = "space_object"
gem.version = SpaceObject::VERSION
gem.summary = %q{A lightweight language for objects}
gem.license = "MIT"
gem.authors = ["Robert Fruchtman"]
gem.email = "rfruchtose@gmail.com"
gem.homepage = "https://github.com/fruchtose/space_object#readme"
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{^spec/})
gem.require_paths = ['lib']
gem.add_development_dependency 'rdoc', '~> 3.0'
gem.add_development_dependency 'rspec', '~> 2.4'
gem.add_development_dependency 'rubygems-tasks', '~> 0.2'
gem.add_runtime_dependency 'activesupport', '~> 4.0'
end