Skip to content

Commit

Permalink
Ruby関連の設定をEliからコピー
Browse files Browse the repository at this point in the history
ぅ絵里ちゃん!
  • Loading branch information
windyakin committed Nov 10, 2015
1 parent ec58cfb commit a152c3c
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 4 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ node_modules/
.sass-cache
*.css.map

#=============================================
# Ruby/Bundler
#=============================================
.bundle/
vendor/bundle/

#=============================================
# Sublime Text
#=============================================
Expand Down
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.2.3
22 changes: 18 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,29 @@
language: node_js

node_js:
- '0.12'
- '4.2'

sudo: false
cache: node_modules

cache:
directories:
- node_modules
- vendor/bundle

git:
submodules: false

before_install:
- gem install sass
- rvm install 2.2.3
- rvm use 2.2.3 --fuzzy
- export GEMDIR=$(rvm gemdir)
- ruby --version
- gem --version
- gem install bundler --quiet --no-ri --no-rdoc
- bundle --version
- bundle install --without documentation --path vendor/bundle
- npm install -g grunt-cli
- grunt --version

script:
- npm start
- npm start
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Pull gems from RubyGems
source 'https://rubygems.org'

gem 'sass', '~> 3.4.19'
13 changes: 13 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
GEM
remote: https://rubygems.org/
specs:
sass (3.4.19)

PLATFORMS
ruby

DEPENDENCIES
sass (~> 3.4.19)

BUNDLED WITH
1.10.6
1 change: 1 addition & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ module.exports = function(grunt) {
sourcemap: 'none',
unixNewlines: true,
style: 'expanded',
bundleExec: true,
loadPath: ['bower_components/bootstrap-sass-official/assets/stylesheets/']
},
bootstrap: {
Expand Down

0 comments on commit a152c3c

Please sign in to comment.