Add pretty buttons
This commit is contained in:
parent
1fc9dda21f
commit
62f3b10184
5 changed files with 23 additions and 1 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -11,3 +11,6 @@
|
|||
|
||||
# Ignore database config file
|
||||
config/database.yml
|
||||
|
||||
# coveralls?
|
||||
coverage/*
|
||||
|
|
1
Gemfile
1
Gemfile
|
@ -24,5 +24,6 @@ group :test, :development do
|
|||
gem 'libnotify'
|
||||
gem 'rb-fsevent'
|
||||
gem 'database_cleaner', '1.0.1'
|
||||
gem 'coveralls', require: false
|
||||
end
|
||||
|
||||
|
|
14
Gemfile.lock
14
Gemfile.lock
|
@ -45,6 +45,13 @@ GEM
|
|||
coffee-script-source
|
||||
execjs
|
||||
coffee-script-source (1.6.3)
|
||||
colorize (0.5.8)
|
||||
coveralls (0.6.7)
|
||||
colorize
|
||||
multi_json (~> 1.3)
|
||||
rest-client
|
||||
simplecov (>= 0.7)
|
||||
thor
|
||||
daemons (1.1.9)
|
||||
database_cleaner (1.0.1)
|
||||
diff-lcs (1.2.4)
|
||||
|
@ -126,6 +133,8 @@ GEM
|
|||
ffi (>= 0.5.0)
|
||||
rdoc (3.12.2)
|
||||
json (~> 1.4)
|
||||
rest-client (1.6.7)
|
||||
mime-types (>= 1.16)
|
||||
rspec (2.14.1)
|
||||
rspec-core (~> 2.14.0)
|
||||
rspec-expectations (~> 2.14.0)
|
||||
|
@ -149,6 +158,10 @@ GEM
|
|||
sdoc (0.3.20)
|
||||
json (>= 1.1.3)
|
||||
rdoc (~> 3.10)
|
||||
simplecov (0.7.1)
|
||||
multi_json (~> 1.0)
|
||||
simplecov-html (~> 0.7.1)
|
||||
simplecov-html (0.7.1)
|
||||
slop (3.4.6)
|
||||
sprockets (2.10.0)
|
||||
hike (~> 1.2)
|
||||
|
@ -188,6 +201,7 @@ DEPENDENCIES
|
|||
capybara
|
||||
capybara-webkit
|
||||
coffee-rails (~> 4.0.0)
|
||||
coveralls
|
||||
database_cleaner (= 1.0.1)
|
||||
factory_girl_rails
|
||||
guard-rspec
|
||||
|
|
|
@ -1 +1,2 @@
|
|||
[![Build Status](https://travis-ci.org/atomaka/allpro.png)](https://travis-ci.org/atomaka/allpro)
|
||||
[![Build Status](https://travis-ci.org/atomaka/allpro.png)](https://travis-ci.org/atomaka/allpro) [![Coverage Status](https://coveralls.io/repos/atomaka/allpro/badge.png)](https://coveralls.io/r/atomaka/allpro) [![Code Climate](https://codeclimate.com/github/atomaka/allpro.png)](https://codeclimate.com/github/atomaka/allpro)
|
||||
|
||||
|
|
|
@ -3,11 +3,14 @@ require File.expand_path("../../config/environment", __FILE__)
|
|||
require 'rspec/rails'
|
||||
require 'rspec/autorun'
|
||||
require 'capybara/rspec'
|
||||
require 'coveralls'
|
||||
|
||||
Dir[Rails.root.join("spec/support/**/*.rb")].each { |f| require f }
|
||||
|
||||
ActiveRecord::Migration.check_pending! if defined?(ActiveRecord::Migration)
|
||||
|
||||
Coveralls.wear!
|
||||
|
||||
RSpec.configure do |config|
|
||||
# ## Mock Framework
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue