table_setter 0.1.6 → 0.1.7

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  ---
2
2
  :minor: 1
3
3
  :build:
4
- :patch: 6
4
+ :patch: 7
5
5
  :major: 0
@@ -225,6 +225,8 @@ script/generate table-setter</pre>
225
225
  <h2><a id="credits" href="#toc">Credits</a></h2>
226
226
  <p><a href="http://github.com/thejefflarson">Jeff Larson</a> (Maintainer), <a href="http://github.com/brianboyer/">Brian Boyer</a>, <a href="http://github.com/kleinmatic">Scott Klein</a>, <a href="http://github.com/markpercival">Mark Percival</a>, <a href="http://github.com/seebq">Charles Brian Quinn</a>, and <a href="http://github.com/bouvard">Christopher Groskopf</a>.</p>
227
227
  <h2><a id="changes" href="#toc">Change Log</a></h2>
228
+ <strong>1.7</strong>
229
+ <p>Bugfix to the build command to place assets in the right place</p>
228
230
  <strong>1.6</strong>
229
231
  <p>Fix in <strong>build_assets</strong> in command.rb, via <a href="http://github.com/propublica/table-setter/commit/2dd207d57eda4d78520b8a5fa99e6e085952206a">Christopher Groskopf</a></p>
230
232
  <strong>1.5</strong>
data/index.html CHANGED
@@ -222,6 +222,8 @@ script/generate table-setter</pre>
222
222
  <h2><a id="credits" href="#toc">Credits</a></h2>
223
223
  <p><a href="http://github.com/thejefflarson">Jeff Larson</a> (Maintainer), <a href="http://github.com/brianboyer/">Brian Boyer</a>, <a href="http://github.com/kleinmatic">Scott Klein</a>, <a href="http://github.com/markpercival">Mark Percival</a>, <a href="http://github.com/seebq">Charles Brian Quinn</a>, and <a href="http://github.com/bouvard">Christopher Groskopf</a>.</p>
224
224
  <h2><a id="changes" href="#toc">Change Log</a></h2>
225
+ <strong>1.7</strong>
226
+ <p>Bugfix to the build command to place assets in the right place</p>
225
227
  <strong>1.6</strong>
226
228
  <p>Fix in <strong>build_assets</strong> in command.rb, via <a href="http://github.com/propublica/table-setter/commit/2dd207d57eda4d78520b8a5fa99e6e085952206a">Christopher Groskopf</a></p>
227
229
  <strong>1.5</strong>
@@ -15,7 +15,7 @@ Usage:
15
15
  commands:
16
16
  start run the development server, for deployment use config.ru
17
17
  install copy the table-setter assets into the the directory
18
- export statically build tables in the ./out/
18
+ build statically build tables in the ./out/
19
19
 
20
20
  options:
21
21
  EOB
@@ -92,7 +92,7 @@ options:
92
92
 
93
93
  def build_assets
94
94
  Dir[TableSetter.config_path + "/public/**/*"].each do |path|
95
- copy_file path, File.join(path.gsub(ROOT + "/template/public/", "#{@out_dir}/"))
95
+ copy_file path, File.join(path.gsub(TableSetter.config_path + "/public/", "#{@out_dir}/"))
96
96
  end
97
97
  end
98
98
 
data/table_setter.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{table_setter}
8
- s.version = "0.1.6"
8
+ s.version = "0.1.7"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Jeff Larson"]
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 6
9
- version: 0.1.6
8
+ - 7
9
+ version: 0.1.7
10
10
  platform: ruby
11
11
  authors:
12
12
  - Jeff Larson