namae 0.11.3 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/.autotest DELETED
@@ -1,21 +0,0 @@
1
- require 'bundler'
2
- begin
3
- if RUBY_PLATFORM =~ /darwin/
4
- Bundler.setup(:default, :development, :debug, :test, :osx)
5
- require 'autotest/fsevent'
6
- else
7
- Bundler.setup(:default, :development, :debug, :test)
8
- end
9
- rescue Bundler::BundlerError => e
10
- $stderr.puts e.message
11
- $stderr.puts "Run `bundle install` to install missing gems"
12
- exit e.status_code
13
- end
14
-
15
-
16
- Autotest.add_hook :initialize do |at|
17
- at.add_mapping(/.+\.y$/) do |f,_|
18
- system 'rake clean racc'
19
- end
20
- end
21
-