indis-arm 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --format progress
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.3
4
+ - jruby-19mode
5
+ gemfile: Gemfile.ci
data/Gemfile ADDED
@@ -0,0 +1,8 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'indis-core', :path => '../indis-core', :group => :development
4
+ gem 'indis-macho', :path => '../indis-macho', :group => :development
5
+
6
+ gem 'rake', :group => :test
7
+
8
+ gemspec
data/Gemfile.ci ADDED
@@ -0,0 +1,7 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'indis-core', :git => 'git://github.com/indis/indis-core.git', :group => :test
4
+ gem 'indis-macho', :git => 'git://github.com/indis/indis-macho.git', :group => :test
5
+ gem 'rake', :group => :test
6
+
7
+ gemspec