Skip to content

Commit

Permalink
Fix copy/paste errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jnunemaker committed Jan 5, 2016
1 parent 5247127 commit f4d6687
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions flipper-active_record.gemspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/flipper/version', __FILE__)

flipper_mongo_files = lambda { |file|
flipper_active_record_files = lambda { |file|
file =~ /active_record/
}

Expand All @@ -13,8 +13,8 @@ Gem::Specification.new do |gem|
gem.license = "MIT"
gem.homepage = "https://github.com/jnunemaker/flipper"

gem.files = `git ls-files`.split("\n").select(&flipper_mongo_files) + ["lib/flipper/version.rb"]
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n").select(&flipper_mongo_files)
gem.files = `git ls-files`.split("\n").select(&flipper_active_record_files) + ["lib/flipper/version.rb"]
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n").select(&flipper_active_record_files)
gem.name = "flipper-active_record"
gem.require_paths = ["lib"]
gem.version = Flipper::VERSION
Expand Down

0 comments on commit f4d6687

Please sign in to comment.