quandl_utility 0.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +5 -0
- data/Gemfile +2 -0
- data/LICENSE +7 -0
- data/README.md +0 -0
- data/Rakefile +21 -0
- data/UPGRADE.md +229 -0
- data/VERSION +1 -0
- data/lib/quandl/utility/configuration.rb +62 -0
- data/lib/quandl/utility/rake_tasks.rb +2 -0
- data/lib/quandl/utility/tasks.rb +30 -0
- data/lib/quandl/utility/version.rb +5 -0
- data/lib/quandl/utility.rb +11 -0
- data/quandl_utility.gemspec +30 -0
- data/spec/spec_helper.rb +8 -0
- data/tasks/utility.rake +83 -0
- metadata +207 -0
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
Copyright (c) 2012-2014 Blake Hilscher
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
4
|
+
|
5
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
6
|
+
|
7
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
File without changes
|
data/Rakefile
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
require "bundler"
|
2
|
+
require "rake"
|
3
|
+
require "bundler/gem_tasks"
|
4
|
+
require "rspec/core/rake_task"
|
5
|
+
require 'pry'
|
6
|
+
|
7
|
+
require 'quandl/utility/rake_tasks'
|
8
|
+
|
9
|
+
task :default => :spec
|
10
|
+
|
11
|
+
desc "Run all specs"
|
12
|
+
RSpec::Core::RakeTask.new(:spec) do |task|
|
13
|
+
task.pattern = "spec/**/*_spec.rb"
|
14
|
+
end
|
15
|
+
|
16
|
+
Quandl::Utility::Tasks.configure do |c|
|
17
|
+
c.name = 'quandl_utility'
|
18
|
+
c.version_path = File.join( Quandl::Utility.root_path, 'VERSION' )
|
19
|
+
c.changelog_path = File.join( Quandl::Utility.root_path, 'UPGRADE.md' )
|
20
|
+
c.changelog_matching = ['^QUGC','^WIKI']
|
21
|
+
end
|
data/UPGRADE.md
ADDED
@@ -0,0 +1,229 @@
|
|
1
|
+
## 2.0.0
|
2
|
+
|
3
|
+
* Version bump to 2.0.0
|
4
|
+
* Updated changelog with commits from 1.1.0
|
5
|
+
* Version bump to 1.1.0
|
6
|
+
* Updated changelog with commits from 1.0.3
|
7
|
+
* Version bump to 1.0.3
|
8
|
+
* Updated changelog with commits from 1.0.2
|
9
|
+
* Version bump to 1.0.2
|
10
|
+
* Updated changelog with commits from 1.0.1
|
11
|
+
* Version bump to 1.0.1
|
12
|
+
* Updated changelog with commits from 1.0.0
|
13
|
+
* Version bump to 1.0.0
|
14
|
+
* Updated changelog with commits from 0.3.0
|
15
|
+
* Version bump to 0.3.0
|
16
|
+
* Updated changelog with commits from 0.2.0
|
17
|
+
* Version bump to 0.2.0
|
18
|
+
* Updated changelog with commits from 0.1.3
|
19
|
+
* Version bump to 0.1.3
|
20
|
+
* Updated changelog with commits from 0.0.3
|
21
|
+
* Version bump to 0.0.3
|
22
|
+
* Version bump to 0.0.2
|
23
|
+
* WIKI-151 bump
|
24
|
+
* add info logging
|
25
|
+
* Version bump to 0.0.1
|
26
|
+
* version is 0.0.0
|
27
|
+
* Version bump to 0.3.1
|
28
|
+
* Version bump to 0.1.0
|
29
|
+
* Version bump to 0.0.0
|
30
|
+
* add utility/configuration and utility/tasks
|
31
|
+
|
32
|
+
|
33
|
+
|
34
|
+
## 1.1.0
|
35
|
+
|
36
|
+
* Version bump to 1.1.0
|
37
|
+
* Updated changelog with commits from 1.0.3
|
38
|
+
* Version bump to 1.0.3
|
39
|
+
* Updated changelog with commits from 1.0.2
|
40
|
+
* Version bump to 1.0.2
|
41
|
+
* Updated changelog with commits from 1.0.1
|
42
|
+
* Version bump to 1.0.1
|
43
|
+
* Updated changelog with commits from 1.0.0
|
44
|
+
* Version bump to 1.0.0
|
45
|
+
* Updated changelog with commits from 0.3.0
|
46
|
+
* Version bump to 0.3.0
|
47
|
+
* Updated changelog with commits from 0.2.0
|
48
|
+
* Version bump to 0.2.0
|
49
|
+
* Updated changelog with commits from 0.1.3
|
50
|
+
* Version bump to 0.1.3
|
51
|
+
* Updated changelog with commits from 0.0.3
|
52
|
+
* Version bump to 0.0.3
|
53
|
+
* Version bump to 0.0.2
|
54
|
+
* WIKI-151 bump
|
55
|
+
* add info logging
|
56
|
+
* Version bump to 0.0.1
|
57
|
+
|
58
|
+
|
59
|
+
|
60
|
+
## 1.0.3
|
61
|
+
|
62
|
+
* Version bump to 1.0.3
|
63
|
+
* Updated changelog with commits from 1.0.2
|
64
|
+
* Version bump to 1.0.2
|
65
|
+
* Updated changelog with commits from 1.0.1
|
66
|
+
* Version bump to 1.0.1
|
67
|
+
* Updated changelog with commits from 1.0.0
|
68
|
+
* Version bump to 1.0.0
|
69
|
+
* Updated changelog with commits from 0.3.0
|
70
|
+
* Version bump to 0.3.0
|
71
|
+
* Updated changelog with commits from 0.2.0
|
72
|
+
* Version bump to 0.2.0
|
73
|
+
* Updated changelog with commits from 0.1.3
|
74
|
+
* Version bump to 0.1.3
|
75
|
+
* Updated changelog with commits from 0.0.3
|
76
|
+
* Version bump to 0.0.3
|
77
|
+
* Version bump to 0.0.2
|
78
|
+
* WIKI-151 bump
|
79
|
+
* add info logging
|
80
|
+
* Version bump to 0.0.1
|
81
|
+
* version is 0.0.0
|
82
|
+
* Version bump to 0.3.1
|
83
|
+
* Version bump to 0.1.0
|
84
|
+
* Version bump to 0.0.0
|
85
|
+
* add utility/configuration and utility/tasks
|
86
|
+
|
87
|
+
|
88
|
+
|
89
|
+
## 1.0.2
|
90
|
+
|
91
|
+
* Version bump to 1.0.2
|
92
|
+
* Updated changelog with commits from 1.0.1
|
93
|
+
* Version bump to 1.0.1
|
94
|
+
* Updated changelog with commits from 1.0.0
|
95
|
+
* Version bump to 1.0.0
|
96
|
+
* Updated changelog with commits from 0.3.0
|
97
|
+
* Version bump to 0.3.0
|
98
|
+
* Updated changelog with commits from 0.2.0
|
99
|
+
* Version bump to 0.2.0
|
100
|
+
* Updated changelog with commits from 0.1.3
|
101
|
+
* Version bump to 0.1.3
|
102
|
+
* Updated changelog with commits from 0.0.3
|
103
|
+
* Version bump to 0.0.3
|
104
|
+
* Version bump to 0.0.2
|
105
|
+
* WIKI-151 bump
|
106
|
+
* add info logging
|
107
|
+
* Version bump to 0.0.1
|
108
|
+
* version is 0.0.0
|
109
|
+
* Version bump to 0.3.1
|
110
|
+
* Version bump to 0.1.0
|
111
|
+
* Version bump to 0.0.0
|
112
|
+
* add utility/configuration and utility/tasks
|
113
|
+
|
114
|
+
|
115
|
+
|
116
|
+
## 1.0.1
|
117
|
+
|
118
|
+
* Version bump to 1.0.1
|
119
|
+
* Updated changelog with commits from 1.0.0
|
120
|
+
* Version bump to 1.0.0
|
121
|
+
* Updated changelog with commits from 0.3.0
|
122
|
+
* Version bump to 0.3.0
|
123
|
+
* Updated changelog with commits from 0.2.0
|
124
|
+
* Version bump to 0.2.0
|
125
|
+
* Updated changelog with commits from 0.1.3
|
126
|
+
* Version bump to 0.1.3
|
127
|
+
* Updated changelog with commits from 0.0.3
|
128
|
+
* Version bump to 0.0.3
|
129
|
+
* Version bump to 0.0.2
|
130
|
+
* WIKI-151 bump
|
131
|
+
* add info logging
|
132
|
+
* Version bump to 0.0.1
|
133
|
+
|
134
|
+
|
135
|
+
|
136
|
+
## 1.0.0
|
137
|
+
|
138
|
+
* Version bump to 1.0.0
|
139
|
+
* Updated changelog with commits from 0.3.0
|
140
|
+
* Version bump to 0.3.0
|
141
|
+
* Updated changelog with commits from 0.2.0
|
142
|
+
* Version bump to 0.2.0
|
143
|
+
* Updated changelog with commits from 0.1.3
|
144
|
+
* Version bump to 0.1.3
|
145
|
+
* Updated changelog with commits from 0.0.3
|
146
|
+
* Version bump to 0.0.3
|
147
|
+
* Version bump to 0.0.2
|
148
|
+
* WIKI-151 bump
|
149
|
+
* add info logging
|
150
|
+
* Version bump to 0.0.1
|
151
|
+
|
152
|
+
|
153
|
+
|
154
|
+
## 0.3.0
|
155
|
+
|
156
|
+
* Version bump to 0.3.0
|
157
|
+
* Updated changelog with commits from 0.2.0
|
158
|
+
* Version bump to 0.2.0
|
159
|
+
* Updated changelog with commits from 0.1.3
|
160
|
+
* Version bump to 0.1.3
|
161
|
+
* Updated changelog with commits from 0.0.3
|
162
|
+
* Version bump to 0.0.3
|
163
|
+
* Version bump to 0.0.2
|
164
|
+
* WIKI-151 bump
|
165
|
+
* add info logging
|
166
|
+
* Version bump to 0.0.1
|
167
|
+
|
168
|
+
|
169
|
+
|
170
|
+
## 0.2.0
|
171
|
+
|
172
|
+
* Version bump to 0.2.0
|
173
|
+
* Updated changelog with commits from 0.1.3
|
174
|
+
* Version bump to 0.1.3
|
175
|
+
* Updated changelog with commits from 0.0.3
|
176
|
+
* Version bump to 0.0.3
|
177
|
+
* Version bump to 0.0.2
|
178
|
+
* WIKI-151 bump
|
179
|
+
* add info logging
|
180
|
+
* Version bump to 0.0.1
|
181
|
+
|
182
|
+
|
183
|
+
|
184
|
+
## 0.1.3
|
185
|
+
|
186
|
+
* Version bump to 0.1.3
|
187
|
+
* Updated changelog with commits from 0.0.3
|
188
|
+
* Version bump to 0.0.3
|
189
|
+
* Version bump to 0.0.2
|
190
|
+
* WIKI-151 bump
|
191
|
+
* add info logging
|
192
|
+
* Version bump to 0.0.1
|
193
|
+
|
194
|
+
|
195
|
+
|
196
|
+
## 0.0.3
|
197
|
+
|
198
|
+
* Updated changelog with commits from 0.0.3
|
199
|
+
* Version bump to 0.0.3
|
200
|
+
* Version bump to 0.0.2
|
201
|
+
* WIKI-151 bump
|
202
|
+
* add info logging
|
203
|
+
* Version bump to 0.0.1
|
204
|
+
|
205
|
+
|
206
|
+
|
207
|
+
## 0.0.3
|
208
|
+
|
209
|
+
* Updated changelog with commits from 0.0.3
|
210
|
+
* Version bump to 0.0.3
|
211
|
+
* Version bump to 0.0.2
|
212
|
+
* WIKI-151 bump
|
213
|
+
* add info logging
|
214
|
+
* Version bump to 0.0.1
|
215
|
+
|
216
|
+
|
217
|
+
|
218
|
+
## 0.0.3
|
219
|
+
|
220
|
+
* WIKI-151 bump
|
221
|
+
|
222
|
+
|
223
|
+
|
224
|
+
## 0.0.2
|
225
|
+
|
226
|
+
* WIKI-151 bump
|
227
|
+
|
228
|
+
|
229
|
+
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.0.0
|
@@ -0,0 +1,62 @@
|
|
1
|
+
module Quandl
|
2
|
+
module Utility
|
3
|
+
class Configuration
|
4
|
+
|
5
|
+
class << self
|
6
|
+
|
7
|
+
def define_attributes(*attribute_names)
|
8
|
+
attribute_names.each do |key|
|
9
|
+
define_attribute(key)
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
def attributes
|
14
|
+
@attributes ||= []
|
15
|
+
end
|
16
|
+
|
17
|
+
protected
|
18
|
+
|
19
|
+
def define_attribute(key)
|
20
|
+
key = key.to_s
|
21
|
+
attributes << key unless attributes.include?(key)
|
22
|
+
define_method( key ){ read_attribute(key) }
|
23
|
+
define_method( "#{key}=" ){ |value| write_attribute(key, value) }
|
24
|
+
end
|
25
|
+
|
26
|
+
end
|
27
|
+
|
28
|
+
def initialize(object={})
|
29
|
+
self.attributes = object
|
30
|
+
after_initialize
|
31
|
+
end
|
32
|
+
|
33
|
+
def after_initialize
|
34
|
+
end
|
35
|
+
|
36
|
+
def to_h
|
37
|
+
attributes
|
38
|
+
end
|
39
|
+
|
40
|
+
def attributes=(attrs)
|
41
|
+
attrs.each do |key, value|
|
42
|
+
self.send("#{key}=", value) if self.respond_to?("#{key}=")
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
def attributes
|
47
|
+
@attributes ||= {}
|
48
|
+
end
|
49
|
+
|
50
|
+
protected
|
51
|
+
|
52
|
+
def read_attribute(key)
|
53
|
+
attributes[key.to_s]
|
54
|
+
end
|
55
|
+
|
56
|
+
def write_attribute(key, value)
|
57
|
+
attributes[key.to_s] = value
|
58
|
+
end
|
59
|
+
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
module Quandl
|
2
|
+
module Utility
|
3
|
+
class Tasks
|
4
|
+
|
5
|
+
class << self
|
6
|
+
attr_accessor :configuration
|
7
|
+
end
|
8
|
+
|
9
|
+
def self.configuration
|
10
|
+
@configuration ||= TaskConfig.new
|
11
|
+
end
|
12
|
+
|
13
|
+
def self.configure
|
14
|
+
yield(configuration)
|
15
|
+
load File.join( Quandl::Utility.root_path, 'tasks/utility.rake' )
|
16
|
+
true
|
17
|
+
end
|
18
|
+
|
19
|
+
class TaskConfig < Quandl::Utility::Configuration
|
20
|
+
define_attributes :name, :changelog_path, :changelog_matching, :version_path
|
21
|
+
|
22
|
+
def version
|
23
|
+
@version ||= File.read(version_path)
|
24
|
+
end
|
25
|
+
|
26
|
+
end
|
27
|
+
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
require "quandl/utility/version"
|
2
|
+
require "quandl/utility/configuration"
|
3
|
+
require "quandl/utility/tasks"
|
4
|
+
|
5
|
+
module Quandl
|
6
|
+
module Utility
|
7
|
+
def self.root_path
|
8
|
+
@root_path ||= File.expand_path(File.join(File.dirname(__FILE__), '../../'))
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require "quandl/utility/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = "quandl_utility"
|
7
|
+
s.version = Quandl::Utility::VERSION
|
8
|
+
s.authors = ["Blake Hilscher"]
|
9
|
+
s.email = ["blake@hilscher.ca"]
|
10
|
+
s.homepage = "http://blake.hilscher.ca/"
|
11
|
+
s.license = "MIT"
|
12
|
+
s.summary = "Utility Tools"
|
13
|
+
s.description = "Tools for making our lives easier."
|
14
|
+
|
15
|
+
s.files = `git ls-files`.split("\n")
|
16
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
17
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
18
|
+
s.require_paths = ["lib", 'tasks']
|
19
|
+
|
20
|
+
s.add_runtime_dependency "activesupport", ">= 3.0.0"
|
21
|
+
s.add_runtime_dependency "rake"
|
22
|
+
s.add_runtime_dependency "jeweler"
|
23
|
+
|
24
|
+
s.add_development_dependency "rspec", "~> 2.13"
|
25
|
+
s.add_development_dependency "fivemat", "~> 1.2"
|
26
|
+
s.add_development_dependency "pry"
|
27
|
+
s.add_development_dependency "simplecov"
|
28
|
+
s.add_development_dependency "guard"
|
29
|
+
s.add_development_dependency "guard-rspec"
|
30
|
+
end
|
data/spec/spec_helper.rb
ADDED
data/tasks/utility.rake
ADDED
@@ -0,0 +1,83 @@
|
|
1
|
+
gemc = Quandl::Utility::Tasks.configuration
|
2
|
+
|
3
|
+
namespace gemc.name do
|
4
|
+
|
5
|
+
namespace :bump do
|
6
|
+
|
7
|
+
desc "Perform major bump to #{gemc.name}"
|
8
|
+
task :major do
|
9
|
+
Rake::Task['quandl:bump:perform'].execute( severity: 'major' )
|
10
|
+
end
|
11
|
+
desc "Perform minor bump to #{gemc.name}"
|
12
|
+
task :minor do
|
13
|
+
Rake::Task['quandl:bump:perform'].execute( severity: 'minor' )
|
14
|
+
end
|
15
|
+
desc "Perform patch bump to #{gemc.name}"
|
16
|
+
task :patch do
|
17
|
+
Rake::Task['quandl:bump:perform'].execute( severity: 'patch' )
|
18
|
+
end
|
19
|
+
|
20
|
+
end
|
21
|
+
|
22
|
+
end
|
23
|
+
|
24
|
+
namespace :quandl do
|
25
|
+
|
26
|
+
namespace :bump do
|
27
|
+
|
28
|
+
task :perform, :severity do |t, args|
|
29
|
+
# update changelog
|
30
|
+
raise "You have unstaged commits." if %x{git status} =~ /Changes not staged for commit/
|
31
|
+
Rake::Task['quandl:bump:version'].execute( severity: args[:severity] )
|
32
|
+
Rake::Task['quandl:changelog:update'].execute
|
33
|
+
end
|
34
|
+
|
35
|
+
task :version, :severity do |t, args|
|
36
|
+
severity = args[:severity]
|
37
|
+
# extract version info
|
38
|
+
major, minor, patch = gemc.version.split(".")
|
39
|
+
# bump
|
40
|
+
case severity.to_sym
|
41
|
+
when :major then
|
42
|
+
major = major.to_i + 1
|
43
|
+
minor = 0
|
44
|
+
patch = 0
|
45
|
+
|
46
|
+
when :minor then
|
47
|
+
minor = minor.to_i + 1
|
48
|
+
patch = 0
|
49
|
+
|
50
|
+
when :patch then
|
51
|
+
patch = patch.to_i + 1
|
52
|
+
end
|
53
|
+
# commit
|
54
|
+
new_version = [major, minor, patch].join(".")
|
55
|
+
File.write( gemc.version_path, new_version )
|
56
|
+
system("git add #{gemc.version_path}; git commit -m 'Version bump to #{new_version}'")
|
57
|
+
end
|
58
|
+
|
59
|
+
|
60
|
+
end
|
61
|
+
|
62
|
+
namespace :changelog do
|
63
|
+
task :update do |t, args|
|
64
|
+
# collect commits that match JIRA syntax
|
65
|
+
since = "v#{gemc.version}"
|
66
|
+
commits = gemc.changelog_matching.collect do |matching|
|
67
|
+
%x{ git --no-pager log --since="#{since}" --pretty=oneline --grep='#{gemc.changelog_matching}' }
|
68
|
+
end.join
|
69
|
+
# split newlines and exclude reference, select uniq
|
70
|
+
commits = commits.split("\n").collect{|c| "* #{c[41..-1]}" }.uniq
|
71
|
+
# compose prepend string
|
72
|
+
new_version = File.read('VERSION')
|
73
|
+
puts "bumping from #{since} to v#{new_version}"
|
74
|
+
commits = "## #{new_version} \n\n" + commits.join("\n") + "\n\n\n\n"
|
75
|
+
# prepend to UPGRADE.md
|
76
|
+
changelog = gemc.changelog_path
|
77
|
+
puts "Appending commits matching #{gemc.changelog_matching.join(" ")} to #{changelog}\n#{commits}"
|
78
|
+
File.write( changelog, commits + File.read( changelog ) )
|
79
|
+
system("git add #{changelog}; git commit -m 'Updated changelog with commits from #{new_version}'")
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
end
|
metadata
ADDED
@@ -0,0 +1,207 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: quandl_utility
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.0
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Blake Hilscher
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2014-03-05 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: activesupport
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 3.0.0
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 3.0.0
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: rake
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0'
|
38
|
+
type: :runtime
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: jeweler
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ! '>='
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
54
|
+
type: :runtime
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ! '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
- !ruby/object:Gem::Dependency
|
63
|
+
name: rspec
|
64
|
+
requirement: !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
66
|
+
requirements:
|
67
|
+
- - ~>
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '2.13'
|
70
|
+
type: :development
|
71
|
+
prerelease: false
|
72
|
+
version_requirements: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ~>
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '2.13'
|
78
|
+
- !ruby/object:Gem::Dependency
|
79
|
+
name: fivemat
|
80
|
+
requirement: !ruby/object:Gem::Requirement
|
81
|
+
none: false
|
82
|
+
requirements:
|
83
|
+
- - ~>
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: '1.2'
|
86
|
+
type: :development
|
87
|
+
prerelease: false
|
88
|
+
version_requirements: !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
90
|
+
requirements:
|
91
|
+
- - ~>
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '1.2'
|
94
|
+
- !ruby/object:Gem::Dependency
|
95
|
+
name: pry
|
96
|
+
requirement: !ruby/object:Gem::Requirement
|
97
|
+
none: false
|
98
|
+
requirements:
|
99
|
+
- - ! '>='
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: '0'
|
102
|
+
type: :development
|
103
|
+
prerelease: false
|
104
|
+
version_requirements: !ruby/object:Gem::Requirement
|
105
|
+
none: false
|
106
|
+
requirements:
|
107
|
+
- - ! '>='
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '0'
|
110
|
+
- !ruby/object:Gem::Dependency
|
111
|
+
name: simplecov
|
112
|
+
requirement: !ruby/object:Gem::Requirement
|
113
|
+
none: false
|
114
|
+
requirements:
|
115
|
+
- - ! '>='
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
none: false
|
122
|
+
requirements:
|
123
|
+
- - ! '>='
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: '0'
|
126
|
+
- !ruby/object:Gem::Dependency
|
127
|
+
name: guard
|
128
|
+
requirement: !ruby/object:Gem::Requirement
|
129
|
+
none: false
|
130
|
+
requirements:
|
131
|
+
- - ! '>='
|
132
|
+
- !ruby/object:Gem::Version
|
133
|
+
version: '0'
|
134
|
+
type: :development
|
135
|
+
prerelease: false
|
136
|
+
version_requirements: !ruby/object:Gem::Requirement
|
137
|
+
none: false
|
138
|
+
requirements:
|
139
|
+
- - ! '>='
|
140
|
+
- !ruby/object:Gem::Version
|
141
|
+
version: '0'
|
142
|
+
- !ruby/object:Gem::Dependency
|
143
|
+
name: guard-rspec
|
144
|
+
requirement: !ruby/object:Gem::Requirement
|
145
|
+
none: false
|
146
|
+
requirements:
|
147
|
+
- - ! '>='
|
148
|
+
- !ruby/object:Gem::Version
|
149
|
+
version: '0'
|
150
|
+
type: :development
|
151
|
+
prerelease: false
|
152
|
+
version_requirements: !ruby/object:Gem::Requirement
|
153
|
+
none: false
|
154
|
+
requirements:
|
155
|
+
- - ! '>='
|
156
|
+
- !ruby/object:Gem::Version
|
157
|
+
version: '0'
|
158
|
+
description: Tools for making our lives easier.
|
159
|
+
email:
|
160
|
+
- blake@hilscher.ca
|
161
|
+
executables: []
|
162
|
+
extensions: []
|
163
|
+
extra_rdoc_files: []
|
164
|
+
files:
|
165
|
+
- .gitignore
|
166
|
+
- Gemfile
|
167
|
+
- LICENSE
|
168
|
+
- README.md
|
169
|
+
- Rakefile
|
170
|
+
- UPGRADE.md
|
171
|
+
- VERSION
|
172
|
+
- lib/quandl/utility.rb
|
173
|
+
- lib/quandl/utility/configuration.rb
|
174
|
+
- lib/quandl/utility/rake_tasks.rb
|
175
|
+
- lib/quandl/utility/tasks.rb
|
176
|
+
- lib/quandl/utility/version.rb
|
177
|
+
- quandl_utility.gemspec
|
178
|
+
- spec/spec_helper.rb
|
179
|
+
- tasks/utility.rake
|
180
|
+
homepage: http://blake.hilscher.ca/
|
181
|
+
licenses:
|
182
|
+
- MIT
|
183
|
+
post_install_message:
|
184
|
+
rdoc_options: []
|
185
|
+
require_paths:
|
186
|
+
- lib
|
187
|
+
- tasks
|
188
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
189
|
+
none: false
|
190
|
+
requirements:
|
191
|
+
- - ! '>='
|
192
|
+
- !ruby/object:Gem::Version
|
193
|
+
version: '0'
|
194
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
195
|
+
none: false
|
196
|
+
requirements:
|
197
|
+
- - ! '>='
|
198
|
+
- !ruby/object:Gem::Version
|
199
|
+
version: '0'
|
200
|
+
requirements: []
|
201
|
+
rubyforge_project:
|
202
|
+
rubygems_version: 1.8.23
|
203
|
+
signing_key:
|
204
|
+
specification_version: 3
|
205
|
+
summary: Utility Tools
|
206
|
+
test_files:
|
207
|
+
- spec/spec_helper.rb
|