br_api_fantasy 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -11,9 +11,7 @@ test:
11
11
  staging:
12
12
  api_uri: http://beta.stagingbleacherreport.com
13
13
  api_key: opensesame
14
- <<: *defaults
15
14
 
16
15
  production:
17
16
  api_uri: http://bleacherreport.com
18
17
  api_key: opensesame
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.2"
16
+ s.version = "0.1.3"
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
- - 2
9
- version: 0.1.2
8
+ - 3
9
+ version: 0.1.3
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.2.
48
+ Thanks for installing br_api_fantasy-0.1.3.
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.2
54
+ config.gem 'br_api_fantasy', :version => 0.1.3
55
55
  ...
56
56
  end
57
57
 
@@ -72,12 +72,10 @@ post_install_message: |
72
72
  staging:
73
73
  api_uri: http://beta.stagingbleacherreport.com
74
74
  api_key: opensesame
75
- <<: *defaults
76
75
 
77
76
  production:
78
77
  api_uri: http://bleacherreport.com
79
78
  api_key: opensesame
80
- <<: *defaults
81
79
 
82
80
 
83
81
  **************************************************