-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* develop: Update README Fixed gem case in travis file Enabled gem publish from travis Added option to generate a plaintext percent file Ensure that XCS_SOURCE_DIR var is nil for dev test Removed bundler/setup (It was causing alcove/version to not be found.) Specify minitest version in gemspec. Travis build now runs tests Added rake ci to build and test Added a few tests. Update README.md Moved the scripty stuff into bin/alcove Minor style changes. ' replaced with " Removed explicit returns in most places. String#+ replaced with String#<< Fixed rename. Added TomDoc comments. Changed indentation to 2 spaces Cleanup and minor refactoring Conflicts: README.md
- Loading branch information
Showing
9 changed files
with
296 additions
and
175 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
language: ruby | ||
cache: bundler | ||
rvm: | ||
- 2.0.0 | ||
script: rake build | ||
- 2.0.0 | ||
script: bundle exec rake ci | ||
deploy: | ||
provider: rubygems | ||
api_key: | ||
secure: QQevlWTpIwUsCHZf2kAbBc6YjedIV+T5IBvvNRnU5Uj/u+gbmpwtYqHuS0SYPGlAiCQFld7FpJ1K20FAsygUZqQaQqr8L85d++0qvaDqTmXm7OgLX4Q1ZxVYgCDA3MnDUY/oLnWmcQ7FwcvQH4yceuNXkBKLRm+OW4c2USvGNDk= | ||
gem: alcove | ||
on: | ||
repo: ioveracker/Alcove | ||
all_branches: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
source 'https://rubygems.org' | ||
gem 'rake', '~> 10.4' | ||
gem 'colored', '~> 1.2' | ||
|
||
group :test do | ||
gem 'minitest', '~> 5.5' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,8 @@ | ||
require 'bundler/gem_tasks' | ||
require 'rake/testtask' | ||
|
||
task :ci => [:test, :build] | ||
|
||
Rake::TestTask.new do |test| | ||
test.pattern = "test/test_*.rb" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,21 @@ | ||
require './lib/alcove/version' | ||
Gem::Specification.new do |s| | ||
s.name = 'alcove' | ||
s.version = Alcove::VERSION | ||
s.date = '2015-02-10' | ||
s.summary = "Painless code coverage reporting for Objective-C." | ||
s.description = "Painless code coverage reporting for Xcode projects written in Objective-C." | ||
s.authors = ['Isaac Overacker'] | ||
s.email = '[email protected]' | ||
s.files = Dir["lib/**/*.rb"] + %w{ bin/alcove README.md LICENSE } | ||
s.executables = 'alcove' | ||
s.homepage = 'https://github.com/ioveracker/alcove' | ||
s.license = 'MIT' | ||
s.name = 'alcove' | ||
s.version = Alcove::VERSION | ||
s.version = "#{s.version}-alpha-#{ENV['TRAVIS_BUILD_NUMBER']}" if ENV['TRAVIS'] | ||
s.date = Date.today.to_s | ||
s.summary = "Painless code coverage reporting for Objective-C." | ||
s.description = "Painless code coverage reporting for Xcode projects written in Objective-C." | ||
s.authors = ['Isaac Overacker'] | ||
s.email = '[email protected]' | ||
s.files = Dir["lib/**/*.rb"] + %w{ bin/alcove README.md LICENSE } | ||
s.executables = 'alcove' | ||
s.homepage = 'https://github.com/ioveracker/alcove' | ||
s.license = 'MIT' | ||
|
||
s.add_runtime_dependency 'colored', '~> 1.2' | ||
s.add_runtime_dependency 'colored', '~> 1.2' | ||
|
||
s.add_development_dependency 'rake' | ||
s.add_development_dependency 'rspec' | ||
s.add_development_dependency 'rake' | ||
s.add_development_dependency 'rspec' | ||
s.add_development_dependency 'minitest', '~> 5.5' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.