br_api_fantasy 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- data/gemspec.rb +2 -1
- metadata +20 -7
data/gemspec.rb
CHANGED
@@ -13,7 +13,8 @@ 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.
|
16
|
+
s.version = "0.1.4"
|
17
|
+
s.add_dependency('httparty', '>= 0.5.2')
|
17
18
|
|
18
19
|
path = File.dirname(__FILE__)+"/config/br_api_fantasy.example.yml"
|
19
20
|
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
|
-
-
|
9
|
-
version: 0.1.
|
8
|
+
- 4
|
9
|
+
version: 0.1.4
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Tung Nguyen
|
@@ -14,10 +14,23 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-07-
|
17
|
+
date: 2010-07-19 00:00:00 -07:00
|
18
18
|
default_executable:
|
19
|
-
dependencies:
|
20
|
-
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
name: httparty
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - ">="
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
segments:
|
28
|
+
- 0
|
29
|
+
- 5
|
30
|
+
- 2
|
31
|
+
version: 0.5.2
|
32
|
+
type: :runtime
|
33
|
+
version_requirements: *id001
|
21
34
|
description:
|
22
35
|
email: tnguyen@bleacherreport.com
|
23
36
|
executables: []
|
@@ -45,13 +58,13 @@ licenses: []
|
|
45
58
|
post_install_message: |
|
46
59
|
**************************************************
|
47
60
|
|
48
|
-
Thanks for installing br_api_fantasy-0.1.
|
61
|
+
Thanks for installing br_api_fantasy-0.1.4.
|
49
62
|
|
50
63
|
Please make sure to add the gem to your rails project.
|
51
64
|
|
52
65
|
Rails::Initializer.run do |config|
|
53
66
|
...
|
54
|
-
config.gem 'br_api_fantasy', :version => 0.1.
|
67
|
+
config.gem 'br_api_fantasy', :version => 0.1.4
|
55
68
|
...
|
56
69
|
end
|
57
70
|
|