Guest User

Untitled

a guest
Aug 8th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.19 KB | None | 0 0
  1. contents of Gemfile
  2. *******************************************
  3. source "http://rubygems.org"
  4.  
  5. # Specify your gem's dependencies in template_del.gemspec
  6. gemspec
  7.  
  8.  
  9. contents of mongify.gemspec
  10. *****************************************************
  11.  
  12. $:.push File.expand_path("../lib", __FILE__)
  13. require "mongify/version"
  14.  
  15. Gem::Specification.new do |s|
  16. s.name = "mongify"
  17. s.version = Mongify::VERSION
  18. s.platform = Gem::Platform::RUBY
  19. s.authors = ["Andrew Kalek"]
  20. s.email = ["andrew.kalek@anlek.com"]
  21. s.homepage = "http://mongify.com"
  22. s.summary = %q{Translate your SQL data to MongoDB with ease}
  23. s.description = %q{Mongify allows you to map your sql data into a mongodb document database with a simple DSL.}
  24. s.required_ruby_version = ">= 1.8.7"
  25.  
  26. s.add_runtime_dependency('activerecord', ">= 4.2", "< 5.0")
  27. s.add_runtime_dependency('activesupport', ">= 4.2", "< 5.0")
  28. s.add_runtime_dependency('mongo', "= 1.12.5")
  29. s.add_runtime_dependency('bson', "= 1.12.5")
  30. s.add_runtime_dependency('bson_ext', "= 1.12.5") unless RUBY_PLATFORM == 'java'
  31. s.add_runtime_dependency('highline', '= 1.7.8')
  32. s.add_runtime_dependency('mysql2', '< 0.5')
  33.  
  34.  
  35. s.add_development_dependency('rspec', '~> 2.0')
  36. s.add_development_dependency('rspec-collection_matchers', '~> 1.0')
  37. s.add_development_dependency('cucumber', '>= 0.10')
  38. s.add_development_dependency('mocha', '>= 0.9.8')
  39. s.add_development_dependency('yard', '>= 0.8')
  40. s.add_development_dependency('sqlite3', '>= 1.3')
  41. s.add_development_dependency('pg', '>= 0.17')
  42. s.add_development_dependency('mysql2', '< 0.5')
  43. s.add_development_dependency('watchr', '>= 0.6')
  44. s.add_development_dependency('rake')
  45. s.add_development_dependency('jazz_fingers')
  46.  
  47. s.files = `git ls-files`.split("\n")
  48. s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
  49. s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  50. s.require_paths = ["lib"]
  51.  
  52. s.extra_rdoc_files = [
  53. "CHANGELOG.md",
  54. "README.rdoc"
  55. ]
  56. s.rdoc_options = ["--title", "Mongify -- SQL db to Mongo db converter", "--main", "README", "--line-numbers", "--inline-source"]
  57. end
Add Comment
Please, Sign In to add comment