Skip to content

Commit

Permalink
Merge pull request #217 from dlamacchia/tt-211-tldlib
Browse files Browse the repository at this point in the history
Fix dangling symlink (Issue #211)
  • Loading branch information
dlamacchia committed Dec 18, 2017
2 parents fe67396 + c35766e commit 556ba49
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
6 changes: 4 additions & 2 deletions rb/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ task :default => ['prebuild', 'spec', 'test:conformance']
task :test => :spec

directory "config"
directory "lib/assets"

desc "Prebuild task setup"
task :prebuild => ["config"] do
task :prebuild => ["config", "lib/assets"] do
FileUtils.cp_r '../config/.', 'config', :verbose => true
FileUtils.cp_r '../conformance/tld_lib.yml', 'lib/assets', :verbose => true
end

require 'rubygems'
Expand Down Expand Up @@ -46,5 +48,5 @@ end

desc "Clean build"
task :clean do
rm_rf ["config", "pkg", "Gemfile.lock"]
rm_rf ["config", "pkg", "lib/assets", "Gemfile.lock"]
end
1 change: 0 additions & 1 deletion rb/lib/assets/tld_lib.yml

This file was deleted.

2 changes: 1 addition & 1 deletion rb/twitter-text.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Gem::Specification.new do |s|
s.name = "twitter-text"
s.version = "2.0.1"
s.version = "2.0.2"
s.authors = ["David LaMacchia", "Sudheer Guntupalli", "Kaushik Lakshmikanth", "Jose Antonio Marquez Russo", "Lee Adams",
"Yoshimasa Niwa"]
s.email = ["opensource@twitter.com"]
Expand Down

0 comments on commit 556ba49

Please sign in to comment.