light-services 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.3.3
data/.travis.yml ADDED
@@ -0,0 +1,17 @@
1
+ sudo: false
2
+ language: ruby
3
+
4
+ rvm:
5
+ - 2.3.3
6
+
7
+ before_install: gem install bundler -v 1.12.5
8
+
9
+ gemfile:
10
+ - gemfiles/rails_4_0.gemfile
11
+ - gemfiles/rails_4_1.gemfile
12
+ - gemfiles/rails_4_2.gemfile
13
+ - gemfiles/rails_5_0.gemfile
14
+
15
+ addons:
16
+ code_climate:
17
+ repo_token: dedf6049120e32b166263dd9e07b2abea3991a18b2d0c8dc86792776ca7578ce
data/Appraisals ADDED
@@ -0,0 +1,16 @@
1
+ appraise 'rails-4-0' do
2
+ gem 'rails', '4.0.13'
3
+ end
4
+
5
+ appraise 'rails-4-1' do
6
+ gem 'rails', '4.1.15'
7
+ end
8
+
9
+ appraise 'rails-4-2' do
10
+ gem 'rails', '4.2.6'
11
+ end
12
+
13
+ appraise 'rails-5-0' do
14
+ gem 'rails', '5.0.0.rc1'
15
+ end
16
+
@@ -0,0 +1,49 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, and in the interest of
4
+ fostering an open and welcoming community, we pledge to respect all people who
5
+ contribute through reporting issues, posting feature requests, updating
6
+ documentation, submitting pull requests or patches, and other activities.
7
+
8
+ We are committed to making participation in this project a harassment-free
9
+ experience for everyone, regardless of level of experience, gender, gender
10
+ identity and expression, sexual orientation, disability, personal appearance,
11
+ body size, race, ethnicity, age, religion, or nationality.
12
+
13
+ Examples of unacceptable behavior by participants include:
14
+
15
+ * The use of sexualized language or imagery
16
+ * Personal attacks
17
+ * Trolling or insulting/derogatory comments
18
+ * Public or private harassment
19
+ * Publishing other's private information, such as physical or electronic
20
+ addresses, without explicit permission
21
+ * Other unethical or unprofessional conduct
22
+
23
+ Project maintainers have the right and responsibility to remove, edit, or
24
+ reject comments, commits, code, wiki edits, issues, and other contributions
25
+ that are not aligned to this Code of Conduct, or to ban temporarily or
26
+ permanently any contributor for other behaviors that they deem inappropriate,
27
+ threatening, offensive, or harmful.
28
+
29
+ By adopting this Code of Conduct, project maintainers commit themselves to
30
+ fairly and consistently applying these principles to every aspect of managing
31
+ this project. Project maintainers who do not follow or enforce the Code of
32
+ Conduct may be permanently removed from the project team.
33
+
34
+ This code of conduct applies both within project spaces and in public spaces
35
+ when an individual is representing the project or its community.
36
+
37
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
38
+ reported by contacting a project maintainer at emelianenko.web@gmail.com. All
39
+ complaints will be reviewed and investigated and will result in a response that
40
+ is deemed necessary and appropriate to the circumstances. Maintainers are
41
+ obligated to maintain confidentiality with regard to the reporter of an
42
+ incident.
43
+
44
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
45
+ version 1.3.0, available at
46
+ [http://contributor-covenant.org/version/1/3/0/][version]
47
+
48
+ [homepage]: http://contributor-covenant.org
49
+ [version]: http://contributor-covenant.org/version/1/3/0/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in light-services.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Andrew Emelianenko
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,47 @@
1
+ # Light::Services
2
+
3
+ [![Build Status](https://travis-ci.org/light-ruby/light-services.svg?branch=master)](https://travis-ci.org/light-ruby/light-services)
4
+ [![Code Climate](https://codeclimate.com/github/light-ruby/light-services/badges/gpa.svg)](https://codeclimate.com/github/light-ruby/light-services)
5
+ [![Test Coverage](https://codeclimate.com/github/light-ruby/light-services/badges/coverage.svg)](https://codeclimate.com/github/light-ruby/light-services/coverage)
6
+
7
+ # WARNING! GEM IN DEVELOPMENT!
8
+
9
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/light/service`. To experiment with that code, run `bin/console` for an interactive prompt.
10
+
11
+ TODO: Delete this and the text above, and describe your gem
12
+
13
+ ## Installation
14
+
15
+ Add this line to your application's Gemfile:
16
+
17
+ ```ruby
18
+ gem 'light-services', '~> 0.1'
19
+ ```
20
+
21
+ And then execute:
22
+
23
+ $ bundle
24
+
25
+ Or install it yourself as:
26
+
27
+ $ gem install light-service
28
+
29
+ ## Usage
30
+
31
+ TODO: Write usage instructions here
32
+
33
+ ## Development
34
+
35
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
36
+
37
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
38
+
39
+ ## Contributing
40
+
41
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/light-service. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
42
+
43
+
44
+ ## License
45
+
46
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
47
+
data/Rakefile ADDED
@@ -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
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'bundler/setup'
4
+ require 'light/services'
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
data/bin/setup ADDED
@@ -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
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "4.0.13"
6
+
7
+ gemspec :path => "../"
@@ -0,0 +1,115 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ light-services (0.1.0)
5
+ rails (> 4.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actionmailer (4.0.13)
11
+ actionpack (= 4.0.13)
12
+ mail (~> 2.5, >= 2.5.4)
13
+ actionpack (4.0.13)
14
+ activesupport (= 4.0.13)
15
+ builder (~> 3.1.0)
16
+ erubis (~> 2.7.0)
17
+ rack (~> 1.5.2)
18
+ rack-test (~> 0.6.2)
19
+ activemodel (4.0.13)
20
+ activesupport (= 4.0.13)
21
+ builder (~> 3.1.0)
22
+ activerecord (4.0.13)
23
+ activemodel (= 4.0.13)
24
+ activerecord-deprecated_finders (~> 1.0.2)
25
+ activesupport (= 4.0.13)
26
+ arel (~> 4.0.0)
27
+ activerecord-deprecated_finders (1.0.4)
28
+ activesupport (4.0.13)
29
+ i18n (~> 0.6, >= 0.6.9)
30
+ minitest (~> 4.2)
31
+ multi_json (~> 1.3)
32
+ thread_safe (~> 0.1)
33
+ tzinfo (~> 0.3.37)
34
+ appraisal (2.1.0)
35
+ bundler
36
+ rake
37
+ thor (>= 0.14.0)
38
+ arel (4.0.2)
39
+ builder (3.1.4)
40
+ codeclimate-test-reporter (0.5.1)
41
+ simplecov (>= 0.7.1, < 1.0.0)
42
+ concurrent-ruby (1.0.2)
43
+ diff-lcs (1.2.5)
44
+ docile (1.1.5)
45
+ erubis (2.7.0)
46
+ i18n (0.7.0)
47
+ json (1.8.6)
48
+ mail (2.6.4)
49
+ mime-types (>= 1.16, < 4)
50
+ mime-types (3.1)
51
+ mime-types-data (~> 3.2015)
52
+ mime-types-data (3.2016.0521)
53
+ minitest (4.7.5)
54
+ multi_json (1.12.1)
55
+ rack (1.5.5)
56
+ rack-test (0.6.3)
57
+ rack (>= 1.0)
58
+ rails (4.0.13)
59
+ actionmailer (= 4.0.13)
60
+ actionpack (= 4.0.13)
61
+ activerecord (= 4.0.13)
62
+ activesupport (= 4.0.13)
63
+ bundler (>= 1.3.0, < 2.0)
64
+ railties (= 4.0.13)
65
+ sprockets-rails (~> 2.0)
66
+ railties (4.0.13)
67
+ actionpack (= 4.0.13)
68
+ activesupport (= 4.0.13)
69
+ rake (>= 0.8.7)
70
+ thor (>= 0.18.1, < 2.0)
71
+ rake (10.5.0)
72
+ rspec (3.4.0)
73
+ rspec-core (~> 3.4.0)
74
+ rspec-expectations (~> 3.4.0)
75
+ rspec-mocks (~> 3.4.0)
76
+ rspec-core (3.4.4)
77
+ rspec-support (~> 3.4.0)
78
+ rspec-expectations (3.4.0)
79
+ diff-lcs (>= 1.2.0, < 2.0)
80
+ rspec-support (~> 3.4.0)
81
+ rspec-mocks (3.4.1)
82
+ diff-lcs (>= 1.2.0, < 2.0)
83
+ rspec-support (~> 3.4.0)
84
+ rspec-support (3.4.1)
85
+ simplecov (0.11.2)
86
+ docile (~> 1.1.0)
87
+ json (~> 1.8)
88
+ simplecov-html (~> 0.10.0)
89
+ simplecov-html (0.10.0)
90
+ sprockets (3.6.1)
91
+ concurrent-ruby (~> 1.0)
92
+ rack (> 1, < 3)
93
+ sprockets-rails (2.3.3)
94
+ actionpack (>= 3.0)
95
+ activesupport (>= 3.0)
96
+ sprockets (>= 2.8, < 4.0)
97
+ thor (0.19.1)
98
+ thread_safe (0.3.5)
99
+ tzinfo (0.3.49)
100
+
101
+ PLATFORMS
102
+ ruby
103
+
104
+ DEPENDENCIES
105
+ appraisal (~> 2.1)
106
+ bundler (~> 1.12)
107
+ codeclimate-test-reporter
108
+ light-services!
109
+ rails (= 4.0.13)
110
+ rake (~> 10.0)
111
+ rspec (~> 3.0)
112
+ simplecov (~> 0.11.2)
113
+
114
+ BUNDLED WITH
115
+ 1.14.4
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "4.1.15"
6
+
7
+ gemspec :path => "../"
@@ -0,0 +1,119 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ light-services (0.1.0)
5
+ rails (> 4.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actionmailer (4.1.15)
11
+ actionpack (= 4.1.15)
12
+ actionview (= 4.1.15)
13
+ mail (~> 2.5, >= 2.5.4)
14
+ actionpack (4.1.15)
15
+ actionview (= 4.1.15)
16
+ activesupport (= 4.1.15)
17
+ rack (~> 1.5.2)
18
+ rack-test (~> 0.6.2)
19
+ actionview (4.1.15)
20
+ activesupport (= 4.1.15)
21
+ builder (~> 3.1)
22
+ erubis (~> 2.7.0)
23
+ activemodel (4.1.15)
24
+ activesupport (= 4.1.15)
25
+ builder (~> 3.1)
26
+ activerecord (4.1.15)
27
+ activemodel (= 4.1.15)
28
+ activesupport (= 4.1.15)
29
+ arel (~> 5.0.0)
30
+ activesupport (4.1.15)
31
+ i18n (~> 0.6, >= 0.6.9)
32
+ json (~> 1.7, >= 1.7.7)
33
+ minitest (~> 5.1)
34
+ thread_safe (~> 0.1)
35
+ tzinfo (~> 1.1)
36
+ appraisal (2.1.0)
37
+ bundler
38
+ rake
39
+ thor (>= 0.14.0)
40
+ arel (5.0.1.20140414130214)
41
+ builder (3.2.2)
42
+ codeclimate-test-reporter (0.5.1)
43
+ simplecov (>= 0.7.1, < 1.0.0)
44
+ concurrent-ruby (1.0.2)
45
+ diff-lcs (1.2.5)
46
+ docile (1.1.5)
47
+ erubis (2.7.0)
48
+ i18n (0.7.0)
49
+ json (1.8.6)
50
+ mail (2.6.4)
51
+ mime-types (>= 1.16, < 4)
52
+ mime-types (3.1)
53
+ mime-types-data (~> 3.2015)
54
+ mime-types-data (3.2016.0521)
55
+ minitest (5.9.0)
56
+ rack (1.5.5)
57
+ rack-test (0.6.3)
58
+ rack (>= 1.0)
59
+ rails (4.1.15)
60
+ actionmailer (= 4.1.15)
61
+ actionpack (= 4.1.15)
62
+ actionview (= 4.1.15)
63
+ activemodel (= 4.1.15)
64
+ activerecord (= 4.1.15)
65
+ activesupport (= 4.1.15)
66
+ bundler (>= 1.3.0, < 2.0)
67
+ railties (= 4.1.15)
68
+ sprockets-rails (~> 2.0)
69
+ railties (4.1.15)
70
+ actionpack (= 4.1.15)
71
+ activesupport (= 4.1.15)
72
+ rake (>= 0.8.7)
73
+ thor (>= 0.18.1, < 2.0)
74
+ rake (10.5.0)
75
+ rspec (3.4.0)
76
+ rspec-core (~> 3.4.0)
77
+ rspec-expectations (~> 3.4.0)
78
+ rspec-mocks (~> 3.4.0)
79
+ rspec-core (3.4.4)
80
+ rspec-support (~> 3.4.0)
81
+ rspec-expectations (3.4.0)
82
+ diff-lcs (>= 1.2.0, < 2.0)
83
+ rspec-support (~> 3.4.0)
84
+ rspec-mocks (3.4.1)
85
+ diff-lcs (>= 1.2.0, < 2.0)
86
+ rspec-support (~> 3.4.0)
87
+ rspec-support (3.4.1)
88
+ simplecov (0.11.2)
89
+ docile (~> 1.1.0)
90
+ json (~> 1.8)
91
+ simplecov-html (~> 0.10.0)
92
+ simplecov-html (0.10.0)
93
+ sprockets (3.6.1)
94
+ concurrent-ruby (~> 1.0)
95
+ rack (> 1, < 3)
96
+ sprockets-rails (2.3.3)
97
+ actionpack (>= 3.0)
98
+ activesupport (>= 3.0)
99
+ sprockets (>= 2.8, < 4.0)
100
+ thor (0.19.1)
101
+ thread_safe (0.3.5)
102
+ tzinfo (1.2.2)
103
+ thread_safe (~> 0.1)
104
+
105
+ PLATFORMS
106
+ ruby
107
+
108
+ DEPENDENCIES
109
+ appraisal (~> 2.1)
110
+ bundler (~> 1.12)
111
+ codeclimate-test-reporter
112
+ light-services!
113
+ rails (= 4.1.15)
114
+ rake (~> 10.0)
115
+ rspec (~> 3.0)
116
+ simplecov (~> 0.11.2)
117
+
118
+ BUNDLED WITH
119
+ 1.14.4
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "4.2.6"
6
+
7
+ gemspec :path => "../"
@@ -0,0 +1,146 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ light-services (0.1.0)
5
+ rails (> 4.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actionmailer (4.2.6)
11
+ actionpack (= 4.2.6)
12
+ actionview (= 4.2.6)
13
+ activejob (= 4.2.6)
14
+ mail (~> 2.5, >= 2.5.4)
15
+ rails-dom-testing (~> 1.0, >= 1.0.5)
16
+ actionpack (4.2.6)
17
+ actionview (= 4.2.6)
18
+ activesupport (= 4.2.6)
19
+ rack (~> 1.6)
20
+ rack-test (~> 0.6.2)
21
+ rails-dom-testing (~> 1.0, >= 1.0.5)
22
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
23
+ actionview (4.2.6)
24
+ activesupport (= 4.2.6)
25
+ builder (~> 3.1)
26
+ erubis (~> 2.7.0)
27
+ rails-dom-testing (~> 1.0, >= 1.0.5)
28
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
29
+ activejob (4.2.6)
30
+ activesupport (= 4.2.6)
31
+ globalid (>= 0.3.0)
32
+ activemodel (4.2.6)
33
+ activesupport (= 4.2.6)
34
+ builder (~> 3.1)
35
+ activerecord (4.2.6)
36
+ activemodel (= 4.2.6)
37
+ activesupport (= 4.2.6)
38
+ arel (~> 6.0)
39
+ activesupport (4.2.6)
40
+ i18n (~> 0.7)
41
+ json (~> 1.7, >= 1.7.7)
42
+ minitest (~> 5.1)
43
+ thread_safe (~> 0.3, >= 0.3.4)
44
+ tzinfo (~> 1.1)
45
+ appraisal (2.1.0)
46
+ bundler
47
+ rake
48
+ thor (>= 0.14.0)
49
+ arel (6.0.3)
50
+ builder (3.2.2)
51
+ codeclimate-test-reporter (0.5.1)
52
+ simplecov (>= 0.7.1, < 1.0.0)
53
+ concurrent-ruby (1.0.2)
54
+ diff-lcs (1.2.5)
55
+ docile (1.1.5)
56
+ erubis (2.7.0)
57
+ globalid (0.3.6)
58
+ activesupport (>= 4.1.0)
59
+ i18n (0.7.0)
60
+ json (1.8.6)
61
+ loofah (2.0.3)
62
+ nokogiri (>= 1.5.9)
63
+ mail (2.6.4)
64
+ mime-types (>= 1.16, < 4)
65
+ mime-types (3.1)
66
+ mime-types-data (~> 3.2015)
67
+ mime-types-data (3.2016.0521)
68
+ mini_portile2 (2.1.0)
69
+ minitest (5.9.0)
70
+ nokogiri (1.6.8)
71
+ mini_portile2 (~> 2.1.0)
72
+ pkg-config (~> 1.1.7)
73
+ pkg-config (1.1.7)
74
+ rack (1.6.4)
75
+ rack-test (0.6.3)
76
+ rack (>= 1.0)
77
+ rails (4.2.6)
78
+ actionmailer (= 4.2.6)
79
+ actionpack (= 4.2.6)
80
+ actionview (= 4.2.6)
81
+ activejob (= 4.2.6)
82
+ activemodel (= 4.2.6)
83
+ activerecord (= 4.2.6)
84
+ activesupport (= 4.2.6)
85
+ bundler (>= 1.3.0, < 2.0)
86
+ railties (= 4.2.6)
87
+ sprockets-rails
88
+ rails-deprecated_sanitizer (1.0.3)
89
+ activesupport (>= 4.2.0.alpha)
90
+ rails-dom-testing (1.0.7)
91
+ activesupport (>= 4.2.0.beta, < 5.0)
92
+ nokogiri (~> 1.6.0)
93
+ rails-deprecated_sanitizer (>= 1.0.1)
94
+ rails-html-sanitizer (1.0.3)
95
+ loofah (~> 2.0)
96
+ railties (4.2.6)
97
+ actionpack (= 4.2.6)
98
+ activesupport (= 4.2.6)
99
+ rake (>= 0.8.7)
100
+ thor (>= 0.18.1, < 2.0)
101
+ rake (10.5.0)
102
+ rspec (3.4.0)
103
+ rspec-core (~> 3.4.0)
104
+ rspec-expectations (~> 3.4.0)
105
+ rspec-mocks (~> 3.4.0)
106
+ rspec-core (3.4.4)
107
+ rspec-support (~> 3.4.0)
108
+ rspec-expectations (3.4.0)
109
+ diff-lcs (>= 1.2.0, < 2.0)
110
+ rspec-support (~> 3.4.0)
111
+ rspec-mocks (3.4.1)
112
+ diff-lcs (>= 1.2.0, < 2.0)
113
+ rspec-support (~> 3.4.0)
114
+ rspec-support (3.4.1)
115
+ simplecov (0.11.2)
116
+ docile (~> 1.1.0)
117
+ json (~> 1.8)
118
+ simplecov-html (~> 0.10.0)
119
+ simplecov-html (0.10.0)
120
+ sprockets (3.6.1)
121
+ concurrent-ruby (~> 1.0)
122
+ rack (> 1, < 3)
123
+ sprockets-rails (3.0.4)
124
+ actionpack (>= 4.0)
125
+ activesupport (>= 4.0)
126
+ sprockets (>= 3.0.0)
127
+ thor (0.19.1)
128
+ thread_safe (0.3.5)
129
+ tzinfo (1.2.2)
130
+ thread_safe (~> 0.1)
131
+
132
+ PLATFORMS
133
+ ruby
134
+
135
+ DEPENDENCIES
136
+ appraisal (~> 2.1)
137
+ bundler (~> 1.12)
138
+ codeclimate-test-reporter
139
+ light-services!
140
+ rails (= 4.2.6)
141
+ rake (~> 10.0)
142
+ rspec (~> 3.0)
143
+ simplecov (~> 0.11.2)
144
+
145
+ BUNDLED WITH
146
+ 1.14.4
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "5.0.0.rc1"
6
+
7
+ gemspec :path => "../"