coderrr / monkey_shield

gets around the method collision problem of monkey patching by allowing you to define methods in contexts

monkey_shield / monkey_shield.gemspec
100644 20 lines (19 sloc) 0.672 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Gem::Specification.new do |s|
  s.name = "monkey_shield"
  s.version = "0.1.0"
  s.summary = "protects you from monkey patching!"
  s.email = "coderrr.contact@gmail.com"
  s.homepage = "http://github.com/coderrr/monkey_shieldgrit"
  s.description = "gets around the method collision problem of monkey patching by allowing you to define methods in contexts"
  s.has_rdoc = true
  s.authors = ["coderrr"]
  s.files = [
    "README.markdown",
    "Rakefile",
    "monkey_shield.gemspec",
    "lib/monkey_shield.rb"
  ]
  s.test_files = ["spec/monkey_shield_spec.rb",
      "spec/real_libs_spec_explicit.rb"]
  s.add_dependency("RubyInline", [">= 3.6.7"])
end