rails-etcs 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: c931873937bb5e6d230bd181eba6382c34b2e430
4
+ data.tar.gz: b8f016cfb9b88f5ff1d5a0b194295e660ebbbba4
5
+ SHA512:
6
+ metadata.gz: 5921cdd680e47dfde236cc28629d9c94dafcb0d339fd3a44b95e68981667be2587f8674cece318f9422aff1f1931d45d659adadd390dec83b155ffa7039407dc
7
+ data.tar.gz: cc59f4b4d58b4d9f0f82620286a20c8733b771f187264d0bb4263ba2b4c4264e675a0e65f2ab9acdb49f90d62a5b4a6b51dba58c1306ba456ffccdad8df1c08c
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
@@ -0,0 +1,6 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3.1
5
+ before_install:
6
+ - gem install bundler -v 1.13.3
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in rails-etcs.gemspec
4
+ gemspec
5
+
6
+ gem 'rake'
7
+ gem 'rspec', '~> 3.0'
@@ -0,0 +1,12 @@
1
+ # Rails::ETCS
2
+
3
+ A collection of patches and alternatives for Rails core classes.
4
+
5
+ ## Installation
6
+
7
+ If you cannot install the gem alone you should better not use it.
8
+
9
+ ## Usage
10
+
11
+ TODO: Write usage instructions here
12
+
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "rails/etcs"
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
@@ -0,0 +1,8 @@
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
@@ -0,0 +1,7 @@
1
+ require "rails/etcs/version"
2
+
3
+ module Rails
4
+ module ETCS
5
+ # Your code goes here...
6
+ end
7
+ end
@@ -0,0 +1,16 @@
1
+ module Rails
2
+ module ETCS
3
+ module VERSION
4
+ MAJOR = 0
5
+ MINOR = 0
6
+ PATCH = 0
7
+ STAGE = nil
8
+
9
+ STRING = [MAJOR, MINOR, PATCH, STAGE].reject(&:nil?).join('.').freeze
10
+
11
+ def self.to_s
12
+ STRING
13
+ end
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,25 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'rails/etcs/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'rails-etcs'
8
+ spec.version = Rails::ETCS::VERSION
9
+ spec.authors = ['Jan Graichen']
10
+ spec.email = ['jgraichen@altimos.de']
11
+
12
+ spec.summary = %q{Collection of patches and alternatives for Rails core classes}
13
+ spec.description = %q{Collection of patches and alternatives for Rails core classes}
14
+ spec.homepage = 'https://github.com/jgraichen/rails-etcs'
15
+ spec.license = 'LGPLv3'
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
18
+ f.match(%r{^(test|spec|features)/})
19
+ end
20
+ spec.bindir = "exe"
21
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22
+ spec.require_paths = ['lib']
23
+
24
+ spec.add_development_dependency 'bundler', '~> 1.13'
25
+ end
metadata ADDED
@@ -0,0 +1,69 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rails-etcs
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Jan Graichen
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-10-12 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.13'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.13'
27
+ description: Collection of patches and alternatives for Rails core classes
28
+ email:
29
+ - jgraichen@altimos.de
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - ".gitignore"
35
+ - ".rspec"
36
+ - ".travis.yml"
37
+ - Gemfile
38
+ - README.md
39
+ - Rakefile
40
+ - bin/console
41
+ - bin/setup
42
+ - lib/rails/etcs.rb
43
+ - lib/rails/etcs/version.rb
44
+ - rails-etcs.gemspec
45
+ homepage: https://github.com/jgraichen/rails-etcs
46
+ licenses:
47
+ - LGPLv3
48
+ metadata: {}
49
+ post_install_message:
50
+ rdoc_options: []
51
+ require_paths:
52
+ - lib
53
+ required_ruby_version: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ version: '0'
58
+ required_rubygems_version: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: '0'
63
+ requirements: []
64
+ rubyforge_project:
65
+ rubygems_version: 2.6.7
66
+ signing_key:
67
+ specification_version: 4
68
+ summary: Collection of patches and alternatives for Rails core classes
69
+ test_files: []