lib/m.rb in m-1.0.0.pre vs lib/m.rb in m-1.0.0
- old
+ new
@@ -10,10 +10,23 @@
#
#Install via:
#
# gem install m
#
+#If you're using Bundler, you'll need to include it in your Gemfile. Toss it into the `test` group:
+#
+# group :test do
+# gem 'm', '~> 1.0'
+# end
+#
+#Developing a RubyGem? Add `m` as a development dependency.
+#
+# Gem::Specification.new do |gem|
+# # ...
+# gem.add_development_dependency "m", "~> 1.0"
+# end
+#
#`m` is Ruby 1.9+ only. Sorry, but `method_source`, `sourcify`, and `ruby_parser`
#all have trouble with 1.8 so I'm giving up and only supporting 1.9 for now.
#Patches are welcome!
#
### Usage
@@ -78,10 +91,10 @@
#This gem is MIT licensed, please see `LICENSE` for more information.
### M, your metal test runner
# Maybe this gem should have a longer name? Metal?
module M
- VERSION = "1.0.0.pre"
+ VERSION = "1.0.0"
# Accept arguments coming from bin/m and run tests.
def self.run(argv)
Runner.new(argv).run
end