Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
jufemaiz committed May 24, 2016
1 parent 0cace96 commit 6b4f9de
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 20 deletions.
31 changes: 14 additions & 17 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
aemo (0.1.28)
aemo (0.1.29)
activesupport (~> 4.2, >= 4.2.0)
httparty (~> 0.13, >= 0.13.1)
json (~> 1.8)
Expand Down Expand Up @@ -164,19 +164,16 @@ PLATFORMS

DEPENDENCIES
aemo!
awesome_print!
bundler (~> 1.3)!
coveralls (~> 0.8, >= 0.8.13)!
guard-yard!
jeweler!
pry!
pry-nav!
rdoc (~> 4.2)!
rspec!
rubocop!
simplecov!
webmock!
yard!

BUNDLED WITH
1.11.2
awesome_print
bundler (~> 1.3)
coveralls (~> 0.8, >= 0.8.13)
guard-yard
jeweler
pry
pry-nav
rdoc (~> 4.2)
rspec
rubocop
simplecov
webmock
yard
2 changes: 1 addition & 1 deletion aemo.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Gem::Specification.new do |s|
s.name = 'aemo'
s.version = AEMO::VERSION
s.platform = Gem::Platform::RUBY
s.date = '2016-02-16'
s.date = '2016-05-24'
s.summary = 'Gem providing functionality for the Australian Energy Market Operator data'
s.description = 'Gem providing functionality for the Australian Energy Market Operator data. Supports NMIs, NEM12, MSATS Web Services and more'
s.authors = ['Joel Courtney', 'Stuart Auld']
Expand Down
2 changes: 1 addition & 1 deletion lib/aemo/nem12.rb
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ def self.parse_nem12(contents, _strict = false)
raise ArgumentError, 'First row should be have a RecordIndicator of 100 and be of type Header Record' unless file_contents.first.parse_csv[0] == '100'

nem12s = []
AEMO::NEM12.parse_nem12_100(file_contents.first, strict: strict)
AEMO::NEM12.parse_nem12_100(file_contents.first, strict: _strict)
file_contents.each do |line|
case line[0..2].to_i
when 200
Expand Down
2 changes: 1 addition & 1 deletion lib/aemo/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# @author Joel Courtney <[email protected]>
module AEMO
# aemo version
VERSION = '0.1.28'.freeze
VERSION = '0.1.29'.freeze

# aemo version split amongst different revisions
MAJOR_VERSION, MINOR_VERSION, REVISION = VERSION.split('.').map(&:to_i)
Expand Down

0 comments on commit 6b4f9de

Please sign in to comment.