-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfake_api.gemspec
executable file
·25 lines (20 loc) · 937 Bytes
/
fake_api.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
$:.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "fake_api/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = "fake_api"
spec.version = FakeApi::VERSION
spec.authors = ["Igor Kasyanchuk"]
spec.email = ["igorkasyanchuk@gmail.com"]
spec.homepage = "https://github.com/igorkasyanchuk/fake_api"
spec.summary = "The fastest way to prototype API in your Rails app."
spec.description = "The fastest way to prototype API in your Rails app using Faker and mix of rails routes, factory bot and faker syntax"
spec.license = "MIT"
spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
spec.add_dependency "rails"
spec.add_dependency "faker"
spec.add_development_dependency "sqlite3"
spec.add_development_dependency "pry"
spec.add_development_dependency "simplecov"
end