app_config 2.5.0 → 2.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a48c0515f2ec849d64e47343c4df57df7de7e80a
4
- data.tar.gz: b2151f2cd3beb98a8065376b1d791a3f0918a6c2
3
+ metadata.gz: 62d72217da9a3fbbe6260bd257b8313a719d43ef
4
+ data.tar.gz: 4757b4141b9a35a2e37635efe89dd2169face9a5
5
5
  SHA512:
6
- metadata.gz: 79ff5cf7464a593064a60a8410a23047867c807f98f572f9f5baff66492a8a01af049c18791c4111a26f91b86b3726da9403ecfe9cbfe5d6622577290f555200
7
- data.tar.gz: 735ee7a382344299dbe7f979f47050b5de6616f478dc9e66ea6aa9a3bbc1a058d46e99ddd71a45a3a7556b5ada8e03fecf92ec7c298a458e2ea3b257ae0fda1c
6
+ metadata.gz: 078db2405909074be48797902c859a6f713bc724ab7400a3bdc4277dd999442f136b085ca2fb22d6c7824377be7033914a4c55ba5c6394e59e35ae35f447ceba
7
+ data.tar.gz: 80da1bc827d584cb700b0b10b6c361c072306bf42c6c40523a8c07248015ed5373d527980d297d88b432fe66514640f61ac5c7f14519d417a1e1ed146eecb328
@@ -12,8 +12,8 @@ before_script:
12
12
  - psql -d app_config_test -U postgres -c "INSERT INTO app_config (admin_email, api_name, api_key, true_option, false_option) VALUES ('admin@example.com', 'Supr Webz 2.0', 'SUPERAWESOMESERVICE', true, false);"
13
13
  # Setup test MySQL database.
14
14
  - mysql -u root -e 'create database app_config_test;'
15
- - mysql -u root -D app_config_test -e 'CREATE TABLE app_config (id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, admin_email VARCHAR(255), api_key VARCHAR(255), true_option BOOLEAN, false_option BOOLEAN);'
16
- - mysql -u root -D app_config_test -e "INSERT INTO app_config (admin_email, api_key, true_option, false_option) VALUES ('admin@example.com', 'SUPERAWESOMESERVICE', true, false);"
15
+ - mysql -u root -D app_config_test -e 'CREATE TABLE app_config (id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, admin_email VARCHAR(255), api_name VARCHAR(255), api_key VARCHAR(255), true_option BOOLEAN, false_option BOOLEAN);'
16
+ - mysql -u root -D app_config_test -e "INSERT INTO app_config (admin_email, api_name, api_key, true_option, false_option) VALUES ('admin@example.com', 'Supr Webz 2.0', 'SUPERAWESOMESERVICE', true, false);"
17
17
 
18
18
  env:
19
19
  # Ignore warnings when running specs.
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- app_config (2.4.1)
4
+ app_config (2.5.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -1,3 +1,3 @@
1
1
  module AppConfig
2
- VERSION = '2.5.0'
2
+ VERSION = '2.5.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: app_config
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.0
4
+ version: 2.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dale Campbell
@@ -211,7 +211,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
211
211
  version: '0'
212
212
  requirements: []
213
213
  rubyforge_project:
214
- rubygems_version: 2.0.14
214
+ rubygems_version: 2.2.2
215
215
  signing_key:
216
216
  specification_version: 4
217
217
  summary: Quick and easy application configuration.