ramda-ruby 0.1.0.alpha → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/Gemfile.dev DELETED
@@ -1,6 +0,0 @@
1
- # encoding: utf-8
2
- source 'https://rubygems.org'
3
-
4
- gem 'rubocop', '= 0.48.0'
5
- gem 'rubocop-rspec', '= 1.15.1'
6
- gem 'overcommit', '= 0.33'
data/Gemfile.dev.lock DELETED
@@ -1,38 +0,0 @@
1
- GEM
2
- remote: https://rubygems.org/
3
- specs:
4
- ast (2.3.0)
5
- childprocess (0.5.9)
6
- ffi (~> 1.0, >= 1.0.11)
7
- ffi (1.9.18)
8
- iniparse (1.4.3)
9
- overcommit (0.33.0)
10
- childprocess (~> 0.5.8)
11
- iniparse (~> 1.4)
12
- parser (2.4.0.0)
13
- ast (~> 2.2)
14
- powerpack (0.1.1)
15
- rainbow (2.2.2)
16
- rake
17
- rake (12.0.0)
18
- rubocop (0.48.0)
19
- parser (>= 2.3.3.1, < 3.0)
20
- powerpack (~> 0.1)
21
- rainbow (>= 1.99.1, < 3.0)
22
- ruby-progressbar (~> 1.7)
23
- unicode-display_width (~> 1.0, >= 1.0.1)
24
- rubocop-rspec (1.15.1)
25
- rubocop (>= 0.42.0)
26
- ruby-progressbar (1.8.1)
27
- unicode-display_width (1.2.1)
28
-
29
- PLATFORMS
30
- ruby
31
-
32
- DEPENDENCIES
33
- overcommit (= 0.33)
34
- rubocop (= 0.48.0)
35
- rubocop-rspec (= 1.15.1)
36
-
37
- BUNDLED WITH
38
- 1.14.6
data/Rakefile DELETED
@@ -1,6 +0,0 @@
1
- require 'bundler/gem_tasks'
2
- require 'rspec/core/rake_task'
3
-
4
- RSpec::Core::RakeTask.new(:spec)
5
-
6
- task default: :spec
data/appveyor.yml DELETED
@@ -1,26 +0,0 @@
1
- install:
2
- - SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
3
- - SET PATH=C:\MinGW\bin;%PATH%
4
- - SET RAKEOPT=-rdevkit
5
- - ruby --version
6
- - gem --version
7
- - bundle install
8
-
9
- build: off
10
-
11
- test_script:
12
- - bundle exec rake
13
-
14
- environment:
15
- matrix:
16
- - ruby_version: "193"
17
- - ruby_version: "200"
18
- - ruby_version: "200-x64"
19
- - ruby_version: "21"
20
- - ruby_version: "21-x64"
21
- - ruby_version: "22"
22
- - ruby_version: "22-x64"
23
-
24
- # matrix:
25
- # allow_failures:
26
- # - ruby_version: "193"
data/bin/console DELETED
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require 'bundler/setup'
4
- require 'ramda/ruby'
5
-
6
- # You can add fixtures and/or initialization code here to make experimenting
7
- # with your gem easier. You can also use a different console, if you like.
8
-
9
- # (If you use this, don't forget to add pry to your Gemfile!)
10
- # require "pry"
11
- # Pry.start
12
-
13
- require 'irb'
14
- IRB.start(__FILE__)
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here
data/codeclimate.yml DELETED
@@ -1,6 +0,0 @@
1
- engines:
2
- rubocop:
3
- enabled: true
4
- channel: rubocop-0-48
5
- config:
6
- file: .rubocop.yml
@@ -1,12 +0,0 @@
1
- app:
2
- volumes:
3
- - ~/.ssh/id_rsa:/root/.ssh/id_rsa
4
- - ./.bashrc.docker:/root/.bashrc
5
- - ./.bash_history.docker:/root/.bash_history
6
- # PRY
7
- - ./.pry_history.docker:/root/.pry_history
8
- - ./.pryrc.docker:/root/.pryrc
9
- environment:
10
- - CI_REPORTS=/tmp/shippable/testresults
11
- - COVERAGE_REPORTS=/tmp/shippable/codecoverage
12
-
data/docker-compose.yml DELETED
@@ -1,15 +0,0 @@
1
- app:
2
- container_name: rambda_ruby_app
3
- build: .
4
- dockerfile: Dockerfile
5
- volumes:
6
- - .:/srv/app
7
- - ./config/config.yml.example:/srv/app/config/config.yml
8
- volumes_from:
9
- - bundle_cache
10
-
11
- bundle_cache:
12
- container_name: rambda_ruby_bundle_cache
13
- image: busybox
14
- volumes:
15
- - /bundle_cache
data/ramda-ruby.gemspec DELETED
@@ -1,24 +0,0 @@
1
- # coding: utf-8
2
-
3
- $LOAD_PATH << File.expand_path('../lib', __FILE__)
4
-
5
- require 'ramda/version'
6
-
7
- Gem::Specification.new do |spec|
8
- spec.name = 'ramda-ruby'
9
- spec.version = Ramda::VERSION
10
- spec.authors = ['Vadim Lazebny']
11
- spec.email = ['vadim.lazebny@gmail.com']
12
-
13
- spec.summary = 'RamdaJs implementation for Ruby.'
14
- spec.description = 'A gem for porting RamdaJs tools for Ruby.'
15
- spec.homepage = 'https://github.com/lazebny/ramda-ruby'
16
- spec.license = 'MIT'
17
-
18
- spec.files = `git ls-files -z`.split("\x0").reject do |f|
19
- f.match(%r{^(test|spec|features)/})
20
- end
21
- spec.bindir = 'exe'
22
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
23
- spec.require_paths = ['lib']
24
- end