Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .ruby-version

This file was deleted.

4 changes: 2 additions & 2 deletions lib/toml.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# require 'toml/monkey_patch

module TOML
VERSION = '0.1.0'
VERSION = '0.1.1'

def self.load(content)
Parser.new(content).parsed
Expand All @@ -23,4 +23,4 @@ def self.load(content)
def self.load_file(path)
Parser.new(File.read(path)).parsed
end
end
end
6 changes: 4 additions & 2 deletions toml.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ Gem::Specification.new do |s|
## If your rubyforge_project name is different, then edit it and comment out
## the sub! line in the Rakefile
s.name = 'toml'
s.version = '0.1.0'
s.date = '2013-12-05'
s.version = '0.1.1'
s.date = '2014-02-17'

## Make sure your summary is short. The description may be as long
## as you like.
Expand All @@ -39,6 +39,8 @@ Gem::Specification.new do |s|
s.extra_rdoc_files = %w[README.md LICENSE]

s.add_dependency "parslet", "~> 1.5.0"

s.add_development_dependency "rake"

## Leave this section as-is. It will be automatically generated from the
## contents of your Git repository via the gemspec task. DO NOT REMOVE
Expand Down