初始化项目以及一点提交
parents
Showing
.gitignore
0 → 100644
Gemfile
0 → 100644
source 'https://rubygems.org' | ||
git_source(:github) { |repo| "https://github.com/#{repo}.git" } | ||
# Declare your gem's dependencies in crm_bms_cms.gemspec. | ||
# Bundler will treat runtime dependencies like base dependencies, and | ||
# development dependencies will be added by default to the :development group. | ||
gemspec | ||
# Declare any dependencies that are still in development here instead of in | ||
# your gemspec. These might include edge Rails or gems from your path or | ||
# Git. Remember to move these dependencies to your gemspec before releasing | ||
# your gem to rubygems.org. | ||
# To use a debugger | ||
# gem 'byebug', group: [:development, :test] |
Gemfile.lock
0 → 100644
MIT-LICENSE
0 → 100644
README.md
0 → 100644
Rakefile
0 → 100644
app/assets/config/crm_bms_cms_manifest.js
0 → 100644
app/assets/images/crm_bms_cms/.keep
0 → 100644
app/jobs/crm_bms_cms/application_job.rb
0 → 100644
app/models/client.rb
0 → 100644
app/models/crm_bms_cms/application_record.rb
0 → 100644
bin/rails
0 → 100755
config/routes.rb
0 → 100644
crm_bms_cms.gemspec
0 → 100644
$LOAD_PATH.push File.expand_path('lib', __dir__) | ||
# Maintain your gem's version: | ||
require 'crm_bms_cms/version' | ||
# Describe your gem and declare its dependencies: | ||
Gem::Specification.new do |spec| | ||
spec.name = 'crm_bms_cms' | ||
spec.version = CrmBmsCms::VERSION | ||
spec.authors = ['dongfeng'] | ||
spec.email = ['dongfeng@dongfengdeMacBook-Pro.local'] | ||
spec.homepage = 'http://gitlab.ikcrm.com/crm/crm_contact.git' | ||
spec.summary = 'CrmBmsCms.' | ||
spec.description = 'CrmBmsCms.' | ||
spec.license = 'MIT' | ||
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' | ||
# to allow pushing to a single host or delete this section to allow pushing to any host. | ||
if spec.respond_to?(:metadata) | ||
spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'" | ||
else | ||
raise 'RubyGems 2.0 or newer is required to protect against ' \ | ||
'public gem pushes.' | ||
end | ||
spec.files = Dir['{app,config,db,lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.md'] | ||
spec.add_dependency 'rails', '~> 5.2.2' | ||
spec.add_development_dependency 'sqlite3' | ||
end |
lib/crm_bms_cms.rb
0 → 100644
lib/crm_bms_cms/engine.rb
0 → 100644
lib/crm_bms_cms/version.rb
0 → 100644
lib/tasks/crm_bms_cms_tasks.rake
0 → 100644
test/crm_bms_cms_test.rb
0 → 100644
test/dummy/.ruby-version
0 → 100644
test/dummy/Rakefile
0 → 100644
test/dummy/app/assets/config/manifest.js
0 → 100644
test/dummy/app/assets/images/.keep
0 → 100644
test/dummy/app/assets/javascripts/cable.js
0 → 100644
test/dummy/app/controllers/concerns/.keep
0 → 100644
test/dummy/app/helpers/application_helper.rb
0 → 100644
test/dummy/app/jobs/application_job.rb
0 → 100644
test/dummy/app/mailers/application_mailer.rb
0 → 100644
test/dummy/app/models/application_record.rb
0 → 100644
test/dummy/app/models/concerns/.keep
0 → 100644
test/dummy/app/views/layouts/mailer.html.erb
0 → 100644
test/dummy/app/views/layouts/mailer.text.erb
0 → 100644
test/dummy/bin/bundle
0 → 100755
test/dummy/bin/rails
0 → 100755
test/dummy/bin/rake
0 → 100755
test/dummy/bin/setup
0 → 100755
test/dummy/bin/update
0 → 100755
test/dummy/bin/yarn
0 → 100755
test/dummy/config.ru
0 → 100644
test/dummy/config/application.rb
0 → 100644
test/dummy/config/boot.rb
0 → 100644
test/dummy/config/cable.yml
0 → 100644
test/dummy/config/database.yml
0 → 100644
test/dummy/config/environment.rb
0 → 100644
test/dummy/config/environments/production.rb
0 → 100644
test/dummy/config/environments/test.rb
0 → 100644
test/dummy/config/initializers/assets.rb
0 → 100644
test/dummy/config/initializers/mime_types.rb
0 → 100644
test/dummy/config/locales/en.yml
0 → 100644
test/dummy/config/puma.rb
0 → 100644
test/dummy/config/routes.rb
0 → 100644
test/dummy/config/spring.rb
0 → 100644
test/dummy/config/storage.yml
0 → 100644
test/dummy/lib/assets/.keep
0 → 100644
test/dummy/log/.keep
0 → 100644
test/dummy/package.json
0 → 100644
{ | ||
"name": "dummy", | ||
"private": true, | ||
"dependencies": {} | ||
} |
test/dummy/public/404.html
0 → 100644
test/dummy/public/422.html
0 → 100644
test/dummy/public/500.html
0 → 100644
test/dummy/public/apple-touch-icon.png
0 → 100644
test/dummy/public/favicon.ico
0 → 100644
test/integration/navigation_test.rb
0 → 100644
test/test_helper.rb
0 → 100644
Please
register
or
sign in
to comment