Skip to content

Commit

Permalink
Bump to 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszkorecki committed Mar 29, 2015
1 parent f0ba931 commit 77c8323
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 14 deletions.
22 changes: 11 additions & 11 deletions CoffeeTags.gemspec
@@ -1,21 +1,21 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "CoffeeTags/version"
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'CoffeeTags/version'

Gem::Specification.new do |s|
s.name = "CoffeeTags"
s.name = 'CoffeeTags'
s.version = Coffeetags::VERSION
s.authors = ["Łukasz Korecki", "Matthew Smith"]
s.email = ["lukasz@korecki.me", "mtscout6@gmail.com"]
s.homepage = "http://github.com/lukaszkorecki/CoffeeTags"
s.summary = %q{tags generator for CoffeeScript}
s.description = %q{CoffeeTags generates ctags compatibile tags for CoffeeScript.}
s.authors = ['Łukasz Korecki', 'Matthew Smith']
s.email = ['lukasz@korecki.me', 'mtscout6@gmail.com']
s.homepage = 'http://github.com/lukaszkorecki/CoffeeTags'
s.summary = 'tags generator for CoffeeScript'
s.description = 'CoffeeTags generates ctags compatibile tags for CoffeeScript.'

s.rubyforge_project = "CoffeeTags"
s.rubyforge_project = 'CoffeeTags'

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.require_paths = ['lib']
s.licenses = ['MIT']
end
5 changes: 3 additions & 2 deletions Gemfile
@@ -1,8 +1,9 @@
source "http://rubygems.org"

gem 'rake'
# Specify your gem's dependencies in CoffeeTags.gemspec
gemspec
gem 'rake'

gem 'CoffeeTags', path: '.'

group :development do
gem 'listen', '1.3.1'
Expand Down
2 changes: 1 addition & 1 deletion lib/CoffeeTags/version.rb
@@ -1,4 +1,4 @@
# encoding: utf-8
module Coffeetags
VERSION = "0.5.0"
VERSION = "0.5.1"
end

0 comments on commit 77c8323

Please sign in to comment.