-
Notifications
You must be signed in to change notification settings - Fork 10
/
configuration.gemspec
50 lines (41 loc) · 955 Bytes
/
configuration.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
38
39
40
41
42
43
44
45
46
47
48
49
50
## configuration.gemspec
#
Gem::Specification::new do |spec|
spec.name = "configuration"
spec.version = "1.3.4"
spec.platform = Gem::Platform::RUBY
spec.summary = "configuration"
spec.description = "ruby configuration for your ruby programs"
spec.license = "same as ruby's"
spec.files =
["LICENSE",
"README.rdoc",
"Rakefile",
"config",
"config/a.rb",
"config/b.rb",
"config/c.rb",
"config/d.rb",
"config/e.rb",
"config/f.rb",
"configuration.gemspec",
"lib",
"lib/configuration.rb",
"samples",
"samples/a.rb",
"samples/b.rb",
"samples/c.rb",
"samples/d.rb",
"samples/e.rb",
"samples/f.rb",
"test",
"test/overwrite_test.rb"]
spec.executables = []
spec.require_path = "lib"
spec.test_files = nil
spec.extensions.push(*[])
spec.rubyforge_project = "codeforpeople"
spec.author = "Ara T. Howard"
spec.email = "[email protected]"
spec.homepage = "https://github.com/ahoward/configuration"
end