br_api_fantasy 0.1.1 → 0.1.2

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.
@@ -4,7 +4,6 @@
4
4
  development: &defaults
5
5
  api_uri: http://beta.stagingbleacherreport.com
6
6
  api_key: opensesame
7
- default_return_to: http://games.stagingbleacherreport.com
8
7
 
9
8
  test:
10
9
  <<: *defaults
@@ -12,11 +11,9 @@ test:
12
11
  staging:
13
12
  api_uri: http://beta.stagingbleacherreport.com
14
13
  api_key: opensesame
15
- default_return_to: http://games.stagingbleacherreport.com
16
14
  <<: *defaults
17
15
 
18
16
  production:
19
17
  api_uri: http://bleacherreport.com
20
18
  api_key: opensesame
21
- default_return_to: http://games.bleacherreport.com
22
19
  <<: *defaults
data/gemspec.rb CHANGED
@@ -13,7 +13,7 @@ GEM_SPEC = Gem::Specification.new do |s|
13
13
  s.name = GEM_NAME
14
14
  s.platform = Gem::Platform::RUBY
15
15
  s.require_path = "lib"
16
- s.version = "0.1.1"
16
+ s.version = "0.1.2"
17
17
 
18
18
  path = File.dirname(__FILE__)+"/config/br_api_fantasy.example.yml"
19
19
  yaml_instructions = IO.read(path)
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 1
9
- version: 0.1.1
8
+ - 2
9
+ version: 0.1.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Tung Nguyen
@@ -45,13 +45,13 @@ licenses: []
45
45
  post_install_message: |
46
46
  **************************************************
47
47
 
48
- Thanks for installing br_api_fantasy-0.1.1.
48
+ Thanks for installing br_api_fantasy-0.1.2.
49
49
 
50
50
  Please make sure to add the gem to your rails project.
51
51
 
52
52
  Rails::Initializer.run do |config|
53
53
  ...
54
- config.gem 'br_api_fantasy', :version => 0.1.1
54
+ config.gem 'br_api_fantasy', :version => 0.1.2
55
55
  ...
56
56
  end
57
57
 
@@ -65,7 +65,6 @@ post_install_message: |
65
65
  development: &defaults
66
66
  api_uri: http://beta.stagingbleacherreport.com
67
67
  api_key: opensesame
68
- default_return_to: http://games.stagingbleacherreport.com
69
68
 
70
69
  test:
71
70
  <<: *defaults
@@ -73,13 +72,11 @@ post_install_message: |
73
72
  staging:
74
73
  api_uri: http://beta.stagingbleacherreport.com
75
74
  api_key: opensesame
76
- default_return_to: http://games.stagingbleacherreport.com
77
75
  <<: *defaults
78
76
 
79
77
  production:
80
78
  api_uri: http://bleacherreport.com
81
79
  api_key: opensesame
82
- default_return_to: http://games.bleacherreport.com
83
80
  <<: *defaults
84
81
 
85
82