forked from jmettraux/onedim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathonedim.gemspec
33 lines (24 loc) · 839 Bytes
/
onedim.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
Gem::Specification.new do |s|
s.name = 'onedim'
s.version = File.read(
File.expand_path('../lib/onedim/version.rb', __FILE__)
).match(/ VERSION *= *['"]([^'"]+)/)[1]
s.platform = Gem::Platform::RUBY
s.authors = [ 'John Mettraux' ]
s.email = [ '[email protected]' ]
s.homepage = 'https://github.com/jmettraux/onedim'
#s.rubyforge_project = 'ruote'
s.summary = 'playground for one dimensional, two states, cellular automata'
s.description = %{
playground for one dimensional, two states, cellular automata
}.strip
#s.files = `git ls-files`.split("\n")
s.files = Dir[
'Rakefile',
'lib/**/*.rb', 'spec/**/*.rb', 'test/**/*.rb',
'*.gemspec', '*.txt', '*.rdoc', '*.md'
]
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec', '>= 2.13.0'
s.require_path = 'lib'
end