Skip to content

Commit

Permalink
Release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Colyer committed Sep 28, 2010
1 parent ba64a4b commit cd74e4e
Showing 1 changed file with 30 additions and 18 deletions.
48 changes: 30 additions & 18 deletions lang2unicode.gemspec
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -12,53 +12,65 @@ Gem::Specification.new do |s|
## Leave these as is they will be modified for you by the rake gemspec task. ## Leave these as is they will be modified for you by the rake gemspec task.
## If your rubyforge_project name is different, then edit it and comment out ## If your rubyforge_project name is different, then edit it and comment out
## the sub! line in the Rakefile ## the sub! line in the Rakefile
s.name = 'NAME' s.name = 'lang2unicode'
s.version = '0.0' s.version = '0.1.0'
s.date = '2010-01-01' s.date = '2010-09-28'
s.rubyforge_project = 'NAME' s.rubyforge_project = 'lang2unicode'


## Make sure your summary is short. The description may be as long ## Make sure your summary is short. The description may be as long
## as you like. ## as you like.
s.summary = "Short description used in Gem listings." s.summary = "A mapping of languages to Unicode codepoints"
s.description = "Long description. Maybe copied from the README." s.description = "A mapping of languages to Unicode codepoints"


## List the primary authors. If there are a bunch of authors, it's probably ## List the primary authors. If there are a bunch of authors, it's probably
## better to set the email to an email list or something. If you don't have ## better to set the email to an email list or something. If you don't have
## a custom homepage, consider using your GitHub URL or the like. ## a custom homepage, consider using your GitHub URL or the like.
s.authors = ["John Doe"] s.authors = ["Matt Colyer"]
s.email = 'jdoe@example.com' s.email = 'matt@typekit.com'
s.homepage = 'http://example.com/NAME' s.homepage = 'http://github.com/typekit/lang2unicode'


## This gets added to the $LOAD_PATH so that 'lib/NAME.rb' can be required as ## This gets added to the $LOAD_PATH so that 'lib/NAME.rb' can be required as
## require 'NAME.rb' or'/lib/NAME/file.rb' can be as require 'NAME/file.rb' ## require 'NAME.rb' or'/lib/NAME/file.rb' can be as require 'NAME/file.rb'
s.require_paths = %w[lib] s.require_paths = %w[lib]


## This sections is only necessary if you have C extensions. ## This sections is only necessary if you have C extensions.
s.require_paths << 'ext' #s.require_paths << 'ext'
s.extensions = %w[ext/extconf.rb] #s.extensions = %w[ext/extconf.rb]


## If your gem includes any executables, list them here. ## If your gem includes any executables, list them here.
s.executables = ["name"] #s.executables = ["name"]
s.default_executable = 'name' #s.default_executable = 'name'


## Specify any RDoc options here. You'll want to add your README and ## Specify any RDoc options here. You'll want to add your README and
## LICENSE files to the extra_rdoc_files list. ## LICENSE files to the extra_rdoc_files list.
s.rdoc_options = ["--charset=UTF-8"] #s.rdoc_options = ["--charset=UTF-8"]
s.extra_rdoc_files = %w[README LICENSE] #s.extra_rdoc_files = %w[README LICENSE]


## List your runtime dependencies here. Runtime dependencies are those ## List your runtime dependencies here. Runtime dependencies are those
## that are needed for an end user to actually USE your code. ## that are needed for an end user to actually USE your code.
s.add_dependency('DEPNAME', [">= 1.1.0", "< 2.0.0"]) #s.add_dependency('DEPNAME', [">= 1.1.0", "< 2.0.0"])


## List your development dependencies here. Development dependencies are ## List your development dependencies here. Development dependencies are
## those that are only needed during development ## those that are only needed during development
s.add_development_dependency('DEVDEPNAME', [">= 1.1.0", "< 2.0.0"]) #s.add_development_dependency('DEVDEPNAME', [">= 1.1.0", "< 2.0.0"])


## Leave this section as-is. It will be automatically generated from the ## Leave this section as-is. It will be automatically generated from the
## contents of your Git repository via the gemspec task. DO NOT REMOVE ## contents of your Git repository via the gemspec task. DO NOT REMOVE
## THE MANIFEST COMMENTS, they are used as delimiters by the task. ## THE MANIFEST COMMENTS, they are used as delimiters by the task.
# = MANIFEST = # = MANIFEST =
s.files = %w[] s.files = %w[
LICENSE
README.md
Rakefile
data/de
data/en
data/es
data/fr
data/ru
lang2unicode.gemspec
lib/lang2unicode.rb
lib/lang2unicode/language.rb
]
# = MANIFEST = # = MANIFEST =


## Test files will be grabbed from the file list. Make sure the path glob ## Test files will be grabbed from the file list. Make sure the path glob
Expand Down

0 comments on commit cd74e4e

Please sign in to comment.