Init project, add exportable concern
parents
Showing
.gitignore
0 → 100644
.rspec
0 → 100644
.travis.yml
0 → 100644
Gemfile
0 → 100644
source "https://gems.ruby-china.com" | ||
# Specify your gem's dependencies in tallty_import_export.gemspec | ||
gemspec | ||
gem "rake", "~> 12.0" | ||
gem "rspec", "~> 3.0" |
Gemfile.lock
0 → 100644
LICENSE.txt
0 → 100644
README.md
0 → 100644
Rakefile
0 → 100644
bin/console
0 → 100755
bin/setup
0 → 100755
lib/tallty_import_export.rb
0 → 100644
lib/tallty_import_export/exportable.rb
0 → 100644
lib/tallty_import_export/importable.rb
0 → 100644
lib/tallty_import_export/version.rb
0 → 100644
spec/spec_helper.rb
0 → 100644
spec/tallty_import_export_spec.rb
0 → 100644
tallty_import_export.gemspec
0 → 100644
require_relative 'lib/tallty_import_export/version' | ||
Gem::Specification.new do |spec| | ||
spec.name = "tallty_import_export" | ||
spec.version = TalltyImportExport::VERSION | ||
spec.authors = ["liyijie"] | ||
spec.email = ["liyijie825@gmail.com"] | ||
spec.summary = %q{ import & export for active_record with simple_controller } | ||
spec.description = %q{ import & export for active_record with simple_controller } | ||
spec.homepage = "https://git.tallty.com/open-source/tallty_import_export" | ||
spec.license = "MIT" | ||
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0") | ||
spec.metadata["allowed_push_host"] = "https://git.tallty.com/open-source/tallty_import_export" | ||
spec.metadata["homepage_uri"] = spec.homepage | ||
spec.metadata["source_code_uri"] = "https://git.tallty.com/open-source/tallty_import_export" | ||
spec.metadata["changelog_uri"] = "https://git.tallty.com/open-source/tallty_import_export" | ||
# Specify which files should be added to the gem when it is released. | ||
# The `git ls-files -z` loads the files in the RubyGem that have been added into git. | ||
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do | ||
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } | ||
end | ||
spec.bindir = "exe" | ||
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } | ||
spec.require_paths = ["lib"] | ||
end |
Please
register
or
sign in
to comment