Skip to content

Commit

Permalink
Release 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelfranca committed Aug 23, 2016
1 parent c31f99c commit 2036a13
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
5 changes: 4 additions & 1 deletion actionpack-xml_parser.gemspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
$:.push File.expand_path("../lib", __FILE__)
require "action_pack/xml_parser/version"

Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'actionpack-xml_parser'
s.version = '2.0.0'
s.version = ActionPack::XmlParser::VERSION
s.summary = 'XML parameters parser for Action Pack (removed from core in Rails 4.0)'

s.required_ruby_version = '>= 2.2.2'
Expand Down
1 change: 1 addition & 0 deletions lib/action_pack/xml_parser.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
require 'active_support/core_ext/hash/conversions'
require 'action_dispatch'
require 'action_dispatch/http/request'
require 'action_pack/xml_parser/version'

module ActionPack
class XmlParser
Expand Down
5 changes: 5 additions & 0 deletions lib/action_pack/xml_parser/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module ActionPack
class XmlParser
VERSION = "2.0.0"
end
end

0 comments on commit 2036a13

Please sign in to comment.