Skip to content
This repository has been archived by the owner on Jun 21, 2018. It is now read-only.

Commit

Permalink
Merge pull request #39 from grosser/clean-gemspec
Browse files Browse the repository at this point in the history
strip gemspec down to the essentials
  • Loading branch information
timcharper committed Dec 12, 2013
2 parents 0b54b0c + 1d5e3ef commit c633144
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions calendar_date_select.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,15 @@ lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'calendar_date_select/version'

Gem::Specification.new do |spec|
spec.name = "calendar_date_select"
spec.version = CalendarDateSelect::VERSION

Gem::Specification.new "calendar_date_select", CalendarDateSelect::VERSION do |spec|
spec.authors = ["Shih-gian Lee", "Enrique Garcia Cota (kikito)", "Tim Charper", "Lars E. Hoeg", "Marc-André Lafortune"]
spec.email = ["github@marc-andre.ca"]
spec.description = %q{Calendar date picker for rails}
spec.summary = %q{Calendar date picker for rails}
spec.description = "Calendar date picker for rails"
spec.summary = "Calendar date picker for rails"
spec.homepage = "http://github.com/marcandre/calendar_date_select"
spec.license = "MIT"

spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.files = `git ls-files lib app MIT-LICENSE`.split($/)

spec.add_dependency "rails", ">= 3.1"

Expand Down

0 comments on commit c633144

Please sign in to comment.