Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
gemspec license
Browse files Browse the repository at this point in the history
  • Loading branch information
mattly committed Jul 13, 2013
1 parent ce748d8 commit 3f68576
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 12 deletions.
3 changes: 2 additions & 1 deletion Rakefile
Expand Up @@ -19,7 +19,8 @@ else
task "rack-coffee.gemspec" do
spec = Gem::Specification.new do |s|
s.name = "rack-coffee"
s.version = "1.0.0"
s.version = "1.0.1"
s.license = "MIT"
s.platform = Gem::Platform::RUBY
s.summary = "serve up coffeescript from rack middleware"

Expand Down
7 changes: 7 additions & 0 deletions Readme.mkdn
Expand Up @@ -59,6 +59,13 @@ Note however that by default this will not play nicely with

## History

* July 13, 2013:
Release 1.01. Add "Licence" field to gemspec. See [this][gemspec-license]
for more info. As someone who recently had to do a license audit,
I appreciate having this available.

[gemspec-license]: http://www.benjaminfleischer.com/2013/07/12/make-the-world-a-better-place-put-a-license-in-your-gemspec/

* March 18, 2012:
This release is **NOT BACKWARDS COMPATIBLE** with 0.9.x.
* added a `:cache_compile` option. If truthy, will cache the compiled coffee
Expand Down
23 changes: 12 additions & 11 deletions rack-coffee.gemspec
@@ -1,24 +1,25 @@
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
s.name = %q{rack-coffee}
s.version = "1.0.0"
s.name = "rack-coffee"
s.version = "1.0.1"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Matthew Lyon", "Brian Mitchell"]
s.date = %q{2012-03-18}
s.description = %q{Rack Middlware for compiling and serving .coffee files using coffee-script; "/javascripts/app.js" compiles and serves "/javascipts/app.coffee".}
s.email = %q{matthew@lyonheart.us}
s.files = [".gitignore", "Gemfile", "Gemfile.lock", "Rakefile", "Readme.mkdn", "lib/rack/coffee.rb", "rack-coffee.gemspec", "test/javascripts/cache_compile.coffee", "test/javascripts/static.js", "test/javascripts/test.coffee", "test/other_javascripts/test.coffee", "test/rack_coffee_test.rb"]
s.homepage = %q{http://github.com/mattly/rack-coffee}
s.date = "2013-07-13"
s.description = "Rack Middlware for compiling and serving .coffee files using coffee-script; \"/javascripts/app.js\" compiles and serves \"/javascipts/app.coffee\"."
s.email = "matthew@lyonheart.us"
s.files = [".gitignore", ".travis.yml", "Gemfile", "Gemfile.lock", "Rakefile", "Readme.mkdn", "lib/rack/coffee.rb", "rack-coffee.gemspec", "test/javascripts/cache_compile.coffee", "test/javascripts/static.js", "test/javascripts/test.coffee", "test/other_javascripts/test.coffee", "test/rack_coffee_test.rb"]
s.homepage = "http://github.com/mattly/rack-coffee"
s.licenses = ["MIT"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{rack-coffee}
s.rubygems_version = %q{1.6.2}
s.summary = %q{serve up coffeescript from rack middleware}
s.rubyforge_project = "rack-coffee"
s.rubygems_version = "2.0.2"
s.summary = "serve up coffeescript from rack middleware"
s.test_files = ["test/rack_coffee_test.rb"]

if s.respond_to? :specification_version then
s.specification_version = 3
s.specification_version = 4

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<rack>, [">= 0"])
Expand Down

0 comments on commit 3f68576

Please sign in to comment.