Skip to content

Commit

Permalink
Bump version and update gemspec for new release
Browse files Browse the repository at this point in the history
Judge 2.0.0!
  • Loading branch information
joecorcoran committed Feb 27, 2013
1 parent a677d91 commit f9c7e6a
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 19 deletions.
35 changes: 17 additions & 18 deletions judge-formtastic.gemspec
@@ -1,25 +1,24 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "judge/formtastic/version"
$:.push File.expand_path('../lib', __FILE__)
require 'judge/formtastic/version'

Gem::Specification.new do |s|
s.name = "judge-formtastic"
s.name = 'judge-formtastic'
s.version = Judge::Formtastic::VERSION
s.authors = ["Joe Corcoran"]
s.email = ["joe@tribesports.com"]
s.homepage = "http://github.com/joecorcoran/judge-formtastic"
s.summary = "Formtastic adapter for Judge"
s.description = "Easily add Judge client side validation to your Formtastic forms."
s.authors = ['Joe Corcoran']
s.email = ['joe@tribesports.com']
s.homepage = 'http://github.com/joecorcoran/judge-formtastic'
s.summary = 'Formtastic adapter for Judge'
s.description = 'Easily add Judge client side validation to your Formtastic forms.'

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- spec/*`.split("\n")
s.require_paths = ["lib"]
s.files = Dir['lib/**/*'] + ['LICENSE.txt', 'README.md']
s.require_paths = ['lib']

s.add_runtime_dependency "judge", "~> 2.0"
s.add_runtime_dependency "formtastic", "~> 2.2"
s.add_runtime_dependency 'judge', '~> 2.0'
s.add_runtime_dependency 'formtastic', '~> 2.2'

s.add_development_dependency "rake"
s.add_development_dependency "rails", "~> 3.2"
s.add_development_dependency "sqlite3", "~> 1.3.7"
s.add_development_dependency "rspec", "~> 2.13"
end
s.add_development_dependency 'rake'
s.add_development_dependency 'rails', '~> 3.2'
s.add_development_dependency 'sqlite3', '~> 1.3.7'
s.add_development_dependency 'rspec', '~> 2.13'
end
2 changes: 1 addition & 1 deletion lib/judge/formtastic/version.rb
@@ -1,5 +1,5 @@
module Judge
module Formtastic
VERSION = "0.1.1"
VERSION = "0.2.0"
end
end

0 comments on commit f9c7e6a

Please sign in to comment.