urbanopt-reopt 0.5.7 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ed7b40e75bd174967b47bad0ce57ab01fecb36830cb164db56793a62e2edb96b
4
- data.tar.gz: 77d0a6f5c0456b1bb7999995b25c8b81afcd1014f120f20cb42273c5fe0e59b5
3
+ metadata.gz: eec478250ecf8bdec94ae33f558aad94f9b3e5d4ef6cbbfdf5dd647e9f64c656
4
+ data.tar.gz: a559e82e18a49edaf0a988ee59633322fe824f51d5f93fd1395b86035460b038
5
5
  SHA512:
6
- metadata.gz: e5a99bf24cc8c9d7558f1bfa44f1274a9028f4de1bbe7e7adc6758c6172dd4c89cb4f57c561602c56971ecd6ec757e92bd6d39c04bec8147a8676d7e72872881
7
- data.tar.gz: a553c31d86dc86a46beda07962233f26eebf88e6b298e2ee8018820d9e2282cc68de71faaf4494e6d84cdc441b42fc4a73693776b9e3e5352dcf99fc8d3a7cf9
6
+ metadata.gz: 2ebc15e53c0f7d856df920bb201c385f0816a4501cfd5f527324c3d33a0bc750b6153514da7f1ec0594925c2537648afb88294e77c56a54c603fcea27b971d57
7
+ data.tar.gz: 9e3862abfff7a0ed47ec3c65e11140f505cc43643f1a3c55360083e634262e714b0094502ecae536307b2218515a0ca09451192146400d1964fa567b44955611
data/.rubocop.yml CHANGED
@@ -3,7 +3,7 @@ AllCops:
3
3
  - gems/**/*
4
4
  - measures/**/*
5
5
  - spec/files/**/measures/**/*
6
-
6
+ require: rubocop-performance
7
7
 
8
8
  inherit_from:
9
- - http://s3.amazonaws.com/openstudio-resources/styles/rubocop_v3.yml
9
+ - http://s3.amazonaws.com/openstudio-resources/styles/rubocop_v4.yml
data/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # URBANopt REopt Gem
2
2
 
3
+ ## Version 0.7.0
4
+
5
+ Date Range: 10/16/21 - 11/22/21:
6
+
7
+ * Updated dependencies for OpenStudio 3.3
8
+
9
+ ## Version 0.6.2
10
+
11
+ Date Range: 06/30/21 - 10/15/21:
12
+
13
+ * Fixed [#90]( https://github.com/urbanopt/urbanopt-reopt-gem/issues/90 ), Add location of PV to Scenario and Feature optimization reopt reports
14
+ * Fixed [#90]( https://github.com/urbanopt/urbanopt-reopt-gem/issues/91 ), Add constrain for area of ground-mount and community solar
15
+
16
+
17
+ # Version 0.6.1
18
+
19
+ Date Range: 04/30/21 - 06/30/21:
20
+ * Fixed [#83]( https://github.com/urbanopt/urbanopt-reopt-gem/issues/83 ), reopt rate-limit error is hard to decipher
21
+ * Fixed [#84]( https://github.com/urbanopt/urbanopt-reopt-gem/pull/84 ), Api error codes
22
+ * Fixed [#86]( https://github.com/urbanopt/urbanopt-reopt-gem/pull/86 ), update rubocop configs to v4
23
+
24
+ ## Version 0.6.0
25
+ Date Range: 4/16/21 - 4/29/21
26
+
27
+ * Update dependencies for OpenStudio 3.2.0 / Ruby 2.7
28
+
3
29
  ## Version 0.5.7
4
30
 
5
31
  Date range: 4/7/21 - 4/15/21
data/Gemfile CHANGED
@@ -53,4 +53,4 @@ allow_local = ENV['FAVOR_LOCAL_GEMS']
53
53
  # gem 'urbanopt-geojson', github: 'URBANopt/urbanopt-geojson-gem', branch: 'develop'
54
54
  # end
55
55
 
56
- # gem 'urbanopt-reporting', github: 'URBANopt/urbanopt-reporting-gem', branch: 'develop'
56
+ # gem 'urbanopt-reporting', github: 'URBANopt/urbanopt-reporting-gem', branch: 'develop'
data/Rakefile CHANGED
@@ -61,10 +61,10 @@ task :cli_openssl_test do
61
61
 
62
62
  puts 'SYSTEM CALL:'
63
63
  puts the_call
64
- STDOUT.flush
64
+ $stdout.flush
65
65
  result = runner.run_command(the_call)
66
66
  puts "DONE, result = #{result}"
67
- STDOUT.flush
67
+ $stdout.flush
68
68
  end
69
69
 
70
70
  task default: :spec