-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjava_properties.gemspec
More file actions
30 lines (28 loc) · 1.54 KB
/
java_properties.gemspec
File metadata and controls
30 lines (28 loc) · 1.54 KB
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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'java_properties/version'
Gem::Specification.new do |s|
s.name = "peterseverin-java_properties"
s.version = JavaProperties::VERSION::STRING
s.date = "2009-08-04"
s.summary = "Simple gem for reading/writing Java properties files from Ruby."
s.email = "flergl@flergl.net"
s.homepage = "http://github.com/flergl/java-properties-for-ruby"
s.description = "A class that can read and write to Java properties files that behaves
otherwise as a standard ruby Enumerable. The keys to this object can
be provided as Strings or Symbols, but internally they are Symbols."
s.has_rdoc = true
s.authors = ["Dwayne Kristjanson"]
s.files = ["History.txt", "Manifest.txt", "README.txt", "Rakefile","java_properties.gemspec",
"lib/java_properties.rb","lib/java_properties/delimiters.rb",
"lib/java_properties/encoding.rb","lib/java_properties/parser.rb",
"lib/java_properties/properties-files.rb","lib/java_properties/specialchars.rb",
"lib/java_properties/utf8.rb","lib/java_properties/version.rb","bin/properties2yaml",
"test/test_data.rb","test/test_helper.rb","test/test_java_properties.rb"]
s.test_files = ["test/test_data.rb","test/test_helper.rb","test/test_java_properties.rb"]
s.rdoc_options = ["--main", "README.txt"]
s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.txt"]
s.executables = ["properties2yaml"]
s.add_development_dependency "rake"
end